public static void static_method ();
public int property_1 { get; set; }
public int property_2 { get; }
- public int property_3 { owned get; construct set; }
+ public int property_3 { owned get; set; }
public delegate int Foo ();
public signal int sig_1 ();
}
public static void static_method ();
public int property_1 { get; set; }
public int property_2 { get; }
- public int property_3 { owned get; construct set; }
+ public int property_3 { owned get; set; }
public delegate int Foo ();
public signal int sig_1 ();
}
assert (property.setter.get_cname () == "test_class_global_set_property_3");
- assert (property.setter.is_construct == true);
+ assert (property.setter.is_construct == false);
assert (property.setter.is_get == false);
assert (property.setter.is_set == true);
assert (property.setter.is_owned == false);
assert (property.setter.get_cname () == "test_interface_global_set_property_3");
- assert (property.setter.is_construct == true);
+ assert (property.setter.is_construct == false);
assert (property.setter.is_get == false);
assert (property.setter.is_set == true);
assert (property.setter.is_owned == false);