logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

PrivateVoidCall.as (329B)


  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. }