aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/ConstantInt.as
diff options
context:
space:
mode:
Diffstat (limited to 'test/swftests/ConstantInt.as')
-rw-r--r--test/swftests/ConstantInt.as12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/swftests/ConstantInt.as b/test/swftests/ConstantInt.as
deleted file mode 100644
index e0bbb6166..000000000
--- a/test/swftests/ConstantInt.as
+++ /dev/null
@@ -1,12 +0,0 @@
-// input: []
-// output: 2
-
-package {
-public class ConstantInt {
- private static const x:int = 2;
-
- public static function main():int{
- return x;
- }
-}
-}