Files
Odin/code/demo.odin
T
2016-12-17 10:23:28 +00:00

15 lines
143 B
Odin

Test1 :: type union {
A: int;
B: int;
};
Test :: type struct {
a: Test1;
};
main :: proc() {
test: Test;
match type x : ^test.a {
}
};