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