Hello again,
This is the second snippet I was curious about.
Basically, valac should not allow the following code to compile since
IMHO, its completely wrong.
Just checking whether I should file a bug report or not.
------------------------------------
public class TestClass
{
public abstract bool test_prop { get; set; }
}
public static int main(string[] args)
{
TestClass tc = new TestClass();
bool test = tc.test_prop;
stdout.printf("%s\n", test ? "TRUE" : "FALSE");
return 0;
}
_______________________________________________
vala-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/vala-list