Rapsys Git
/
youtubedl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
debian/changelog: Reorganize entries.
[youtubedl]
/
test
/
swftests
/
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
}