repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
semantic
/
method-interface-already-found.test
blob
47ae22f758ee0ebdb16ef527815e633702faf825
1
Invalid Code
2
3
interface IFoo {
4
public abstract void foo ();
5
}
6
7
class Foo : IFoo {
8
public void IFoo.foo () {
9
}
10
11
public void IFoo.foo () {
12
}
13
}
14
15
void main () {
16
}