Fix (Crude) cyclic type checking for arrays and vectors

This commit is contained in:
Ginger Bill
2016-12-04 23:41:21 +00:00
parent c71b547cde
commit 8ec9811d7a
3 changed files with 100 additions and 33 deletions
+11
View File
@@ -1,6 +1,17 @@
// #import "game.odin";
#import "fmt.odin";
A :: type struct {
b: B;
};
B :: type struct {
c: C;
};
C :: type struct {
a: A;
};
main :: proc() {
fmt.println(123);
}