Release 0.41.92
[vala-gnome.git] / tests / semantic / method-interface-already-found.test
blob47ae22f758ee0ebdb16ef527815e633702faf825
1 Invalid Code
3 interface IFoo {
4         public abstract void foo ();
7 class Foo : IFoo {
8         public void IFoo.foo () {
9         }
11         public void IFoo.foo () {
12         }
15 void main () {