mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-18 20:40:28 +00:00
Remove multiple messages for cyclic type errors.
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user