Release 0.41.92
[vala-gnome.git] / tests / semantic / property-override-interface.test
blob317ba7727c1166b35b55f73658af385d3563a791
1 Invalid Code
3 interface Bar {
4         public abstract int foo { get; set; }
7 class Foo : Bar {
8         public override string foo { get; set; }
11 void main () {