Fix Type_Info bug overwriting type_info data.

This commit is contained in:
Ginger Bill
2016-10-23 22:50:15 +01:00
parent b454371f3b
commit a5c1e83ce4
8 changed files with 205 additions and 110 deletions

View File

@@ -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)
}