1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-06 16:11:00 +02:00
yt-dlp/test/swftests/ClassConstruction.as

16 lines
181 B
ActionScript
Raw Normal View History

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