]> jfr.im git - yt-dlp.git/blob - test/swftests.unused/PrivateCall.as
[FFmpegMetadataPP] Remove `\0` from metadata
[yt-dlp.git] / test / swftests.unused / PrivateCall.as
1 // input: []
2 // output: 9
3
4 package {
5 public class PrivateCall {
6 public static function main():int{
7 var f:OtherClass = new OtherClass();
8 return f.func();
9 }
10 }
11 }
12
13 class OtherClass {
14 private function pf():int {
15 return 9;
16 }
17
18 public function func():int {
19 return this.pf();
20 }
21 }