tests: Add invalid "method" tests to increase coverage
[vala-gnome.git] / tests / semantic / method-private-override.test
blobdef7d8632516943b48d83af12bea51953a13804d
1 Invalid Code
3 class Foo {
4         public virtual void foo () {
5         }
8 class Bar : Foo {
9         override void foo () {
10         }
13 void main () {