aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/LocalVars.as
diff options
context:
space:
mode:
Diffstat (limited to 'test/swftests/LocalVars.as')
-rw-r--r--test/swftests/LocalVars.as13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/swftests/LocalVars.as b/test/swftests/LocalVars.as
deleted file mode 100644
index b2911a9f3..000000000
--- a/test/swftests/LocalVars.as
+++ /dev/null
@@ -1,13 +0,0 @@
-// input: [1, 2]
-// output: 3
-
-package {
-public class LocalVars {
- public static function main(a:int, b:int):int{
- var c:int = a + b + b;
- var d:int = c - b;
- var e:int = d;
- return e;
- }
-}
-}