mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-25 15:05:00 -07:00
Fix (Crude) cyclic type checking for arrays and vectors
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user