codegen: Fix floating reference regression with Variants
[vala-gnome.git] / tests / objects / bug596621.vala
blob8a732f175510606a693911f8f9663ace8179d3f3
1 delegate void Func ();
3 class Foo : Object {
4 [CCode (has_construct_function = false)]
5 public Foo () {
9 class Bar : Foo {
10 public Bar () {
11 Func baz;
15 void main () {