Release 0.41.92
[vala-gnome.git] / tests / objects / bug643711.vala
blob690c36e848beb4ea7e3bbdee45e9c91ff901fe8e
1 public abstract class Foo {
2 public Baz get_struct () { return Baz (); }
3 public abstract void bar ();
6 public struct Baz {
7 Foo foo;
9 public void bar () {
10 foo.bar ();
14 void main () { }