Rapsys Git
/
youtubedl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Install support files via debhelper instead of setup.py.
[youtubedl]
/
test
/
swftests
/
PrivateVoidCall.as
1
// input: []
2
// output: 9
3
4
package {
5
public class PrivateVoidCall {
6
public static function main():int{
7
var f:OtherClass = new OtherClass();
8
f.func();
9
return 9;
10
}
11
}
12
}
13
14
class OtherClass {
15
private function pf():void {
16
;
17
}
18
19
public function func():void {
20
this.pf();
21
}
22
}