aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/ClassConstruction.as
diff options
context:
space:
mode:
Diffstat (limited to 'test/swftests/ClassConstruction.as')
-rw-r--r--test/swftests/ClassConstruction.as15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/swftests/ClassConstruction.as b/test/swftests/ClassConstruction.as
deleted file mode 100644
index 436479f8f..000000000
--- a/test/swftests/ClassConstruction.as
+++ /dev/null
@@ -1,15 +0,0 @@
-// input: []
-// output: 0
-
-package {
-public class ClassConstruction {
- public static function main():int{
- var f:Foo = new Foo();
- return 0;
- }
-}
-}
-
-class Foo {
-
-}