aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests.unused/ClassCall.as
diff options
context:
space:
mode:
Diffstat (limited to 'test/swftests.unused/ClassCall.as')
-rw-r--r--test/swftests.unused/ClassCall.as17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/swftests.unused/ClassCall.as b/test/swftests.unused/ClassCall.as
deleted file mode 100644
index aef58daf3..000000000
--- a/test/swftests.unused/ClassCall.as
+++ /dev/null
@@ -1,17 +0,0 @@
-// input: []
-// output: 121
-
-package {
-public class ClassCall {
- public static function main():int{
- var f:OtherClass = new OtherClass();
- return f.func(100,20);
- }
-}
-}
-
-class OtherClass {
- public function func(x: int, y: int):int {
- return x+y+1;
- }
-}