]> jfr.im git - yt-dlp.git/blame - test/swftests.unused/PrivateCall.as
[Streamable] Add codecs (#1189)
[yt-dlp.git] / test / swftests.unused / PrivateCall.as
CommitLineData
0d989011
PH
1// input: []
2// output: 9
3
4package {
5public class PrivateCall {
6 public static function main():int{
7 var f:OtherClass = new OtherClass();
8 return f.func();
9 }
10}
11}
12
13class OtherClass {
14 private function pf():int {
15 return 9;
16 }
17
18 public function func():int {
19 return this.pf();
20 }
21}