aboutsummaryrefslogtreecommitdiffstats
path: root/test/swftests/PrivateVoidCall.as
diff options
context:
space:
mode:
Diffstat (limited to 'test/swftests/PrivateVoidCall.as')
-rw-r--r--test/swftests/PrivateVoidCall.as22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/swftests/PrivateVoidCall.as b/test/swftests/PrivateVoidCall.as
deleted file mode 100644
index 2cc016797..000000000
--- a/test/swftests/PrivateVoidCall.as
+++ /dev/null
@@ -1,22 +0,0 @@
-// input: []
-// output: 9
-
-package {
-public class PrivateVoidCall {
- public static function main():int{
- var f:OtherClass = new OtherClass();
- f.func();
- return 9;
- }
-}
-}
-
-class OtherClass {
- private function pf():void {
- ;
- }
-
- public function func():void {
- this.pf();
- }
-}