repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
structs
/
bug749952.vala
blob
212edc59a44b895c3e8d02d38ccc0348f83d39be
1
struct
Foo
{
2
int
i
;
3
}
4
5
struct
Bar
:
Foo
{
6
}
7
8
void
main
() {
9
Bar b1
= {};
10
Bar b2
= {};
11
12
assert
(
b1
==
b2
);
13
assert
(
b2
==
b1
);
14
}