girparser: Assume arrays without length are null terminated.
[vala-lang.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 () {