1
0
mirror of https://github.com/l1ving/youtube-dl synced 2024-10-03 17:07:21 +08: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 {
}