git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed staticself.as testcase
[swftools.git]
/
lib
/
as3
/
err
/
interface5.as
1
package {
2
interface A {
3
function f()
4
}
5
interface B {
6
function f(x)
7
}
8
9
public class C implements A,B
10
{
11
// ambigious definition (or: B.f not implemented)
12
public function f() {}
13
}
14
}