aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/LocalVars.as
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-06-09 12:23:42 -0500
committerJesús <heckyel@hyperbola.info>2021-06-09 12:23:42 -0500
commitff87b367dce059d04f3f1dc11000553a065f8f0f (patch)
treecac7ecfc0ff70c036c84e22acc8dc10279d22f06 /test/swftests/LocalVars.as
parentc2350cac243ba1ec1586fe85b0d62d1b700047a2 (diff)
downloadhypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.lz
hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.xz
hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.zip
brand
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;
- }
-}
-}