mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-10-29 06:27:59 +09:00
23 lines
329 B
ActionScript
23 lines
329 B
ActionScript
// 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();
|
|
}
|
|
}
|