aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/StaticAssignment.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/StaticAssignment.as
parentc2350cac243ba1ec1586fe85b0d62d1b700047a2 (diff)
downloadhypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.lz
hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.xz
hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.zip
brand
Diffstat (limited to 'test/swftests/StaticAssignment.as')
-rw-r--r--test/swftests/StaticAssignment.as13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/swftests/StaticAssignment.as b/test/swftests/StaticAssignment.as
deleted file mode 100644
index b061c219d..000000000
--- a/test/swftests/StaticAssignment.as
+++ /dev/null
@@ -1,13 +0,0 @@
-// input: [1]
-// output: 1
-
-package {
-public class StaticAssignment {
- public static var v:int;
-
- public static function main(a:int):int{
- v = a;
- return v;
- }
-}
-}