]> jfr.im git - yt-dlp.git/blame - test/swftests.unused/ClassCall.as
[FFmpegMetadataPP] Remove `\0` from metadata
[yt-dlp.git] / test / swftests.unused / ClassCall.as
CommitLineData
01b4b745
PH
1// input: []
2// output: 121
3
4package {
5public class ClassCall {
6 public static function main():int{
7 var f:OtherClass = new OtherClass();
8 return f.func(100,20);
9 }
10}
11}
12
13class OtherClass {
14 public function func(x: int, y: int):int {
15 return x+y+1;
16 }
17}