v2 / vlib / v / tests / c_structs / anon.h
11 lines · 9 sloc · 127 bytes · 36154b8631c9cd599947b1b0e07f00829b1b66fe
Raw
1// anon.h
2#ifndef TEST_H
3#define TEST_H
4
5typedef struct {
6 struct {
7 int x;
8 } inner;
9} outer;
10
11#endif