vala: Allow read-only properties
[vala-gnome.git] / tests / structs / bug595587.vala
blob84c055360c370b967eb24c79944cf338db13777a
1 struct Foo {
2 int x;
5 class Bar {
6 public Foo? foo {
7 set {
8 bool b = (value == null);
13 void main () {