tests: Add more invalid class tests to increase coverage
[vala-gnome.git] / tests / semantic / class-missing-implement-property.test
blobe958a778246928f6b2dd8f6b5bd740e60e1abcd4
1 Invalid Code
3 abstract class Bar {
4         public abstract string bar { get; set; }
7 class Foo : Bar {
10 void main () {