1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-22 07:26:53 +02:00
yt-dlp/test/swftests.unused/ClassConstruction.as
2021-06-06 00:59:04 +05:30

16 lines
181 B
ActionScript

// input: []
// output: 0
package {
public class ClassConstruction {
public static function main():int{
var f:Foo = new Foo();
return 0;
}
}
}
class Foo {
}