You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
329 B

  1. // input: []
  2. // output: 9
  3. package {
  4. public class PrivateVoidCall {
  5. public static function main():int{
  6. var f:OtherClass = new OtherClass();
  7. f.func();
  8. return 9;
  9. }
  10. }
  11. }
  12. class OtherClass {
  13. private function pf():void {
  14. ;
  15. }
  16. public function func():void {
  17. this.pf();
  18. }
  19. }