Fix missing type_info with manual linear search

This commit is contained in:
Ginger Bill
2016-09-08 00:23:14 +01:00
parent 3d02f8a5fd
commit c6d02e4778
13 changed files with 55 additions and 79 deletions
+1 -8
View File
@@ -2,13 +2,6 @@
#load "math.odin"
main :: proc() {
i: int
s: struct {
x, y, z: f32
}
p := ^s
a: any = i
a: any = 1
println(137, "Hello", 1.25, true)
}