gtk+-3.0: Fix gtk_widget_adjust_size_* bindings
[vala-lang.git] / tests / structs / bug530605.vala
blob030564fa00fd5647df3075093e56e5456deac275
1 struct Foo {
2 int bar;
3 string baz;
5 public Foo (int bar, string baz) {
6 this.bar = bar;
7 this.baz = baz;
11 void main () {
12 Foo a = Foo (42, "hello");
13 Foo b = Foo (42, "hello");
14 Foo? c = Foo (42, "hello");
15 Foo d = Foo (42, "world");
16 Foo e = Foo (23, "hello");
18 assert (a == b);
19 assert (a == c);
20 assert (a != d);
21 assert (a != e);