v2 / vlib / v / tests / c_structs / cstruct_anon_eq_test.c.v
14 lines · 12 sloc · 152 bytes · 752eb5cf8cd146882390b529a08f29c46fd70dc1
Raw
1#insert "@VMODROOT/anon.h"
2
3@[typedef]
4struct C.outer {
5 inner struct {
6 x int
7 }
8}
9
10fn test_main() {
11 a := C.outer{}
12 b := C.outer{}
13 assert a == b
14}
15