git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed some compiler warnings, fixed as3compile spec for-in.as
[swftools.git]
/
lib
/
as3
/
err
/
final2.as
1
package {
2
class A {
3
final public function f() {
4
}
5
}
6
7
public class Main extends A
8
{
9
//error: f is final:
10
override public function f() {
11
}
12
}
13
}