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