codegen: Fix floating reference regression with Variants
[vala-gnome.git] / tests / objects / bug641418-2.test
blob722b1ce93f2f7e4890ad2dca58f236f9e8b469a5
1 Invalid Code
3 class Foo<K,V> {
6 class Bar {
7         public virtual Foo<K,V> f<K,V> () {
8                 return null;
9         }
12 class Baz : Bar {
13         public override Foo<A,B> f<B,A> () {
14                 return null;
15         }
18 void main () {