Remove multiple messages for cyclic type errors.

This commit is contained in:
Ginger Bill
2016-12-05 00:22:30 +00:00
parent 8ec9811d7a
commit 88aa74bbb9
2 changed files with 15 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
// #import "game.odin";
#import "fmt.odin";
A :: type struct {
@@ -11,8 +10,9 @@ C :: type struct {
a: A;
};
main :: proc() {
fmt.println(123);
fmt.println(size_of(A));
fmt.println(size_of(B));
fmt.println(size_of(C));
}