1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00
youtube-dl/test/swftests/ClassConstruction.as
2014-07-20 00:25:58 +02:00

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 {
}