aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js')
-rw-r--r--test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js b/test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js
deleted file mode 100644
index 5fd4ed1a3..000000000
--- a/test/suite/sputnik_converted/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4.js
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-
-// Converted for Test262 from original Sputnik source
-
- function SwitchTest(value){
- var result = 0;
-
- switch(value) {
- case:
- result += 2;
- default:
- result += 32;
- break;
- }
-
- return result;
-}
-
-var x = SwitchTest(0);
-
-