mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-07 02:54:18 +00:00
Fix Type_Info bug overwriting type_info data.
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
#import "fmt.odin"
|
||||
|
||||
a: [12]u8
|
||||
main :: proc() {
|
||||
v: {4}f32
|
||||
v: [4]f32
|
||||
v[0] = 123
|
||||
fmt.println("Hellope!", v, v[0])
|
||||
fmt.println("Hellope!", v, v[0], a)
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user