codegen: Fix floating reference regression with Variants
[vala-gnome.git] / tests / objects / bug779038-2.test
blob7b262f78b06beccbbbf09bae759b6c98a1dfccd6
1 Invalid Code
3 public interface Foo : Object {
4         public abstract int foo { get; set; }
7 public interface Bar : Object {
8         public abstract string foo { get; set; }
11 public class Baz : Object, Foo {
12         public int foo { get; set; }
15 public class Manam : Baz, Bar {
18 void main () {