Allow for constants of compound types

This commit is contained in:
Ginger Bill
2016-10-01 00:02:00 +01:00
parent 9aa9007d8f
commit 264fc1e1f3
2 changed files with 26 additions and 10 deletions
+8 -2
View File
@@ -4,6 +4,12 @@
#import "mem.odin"
#import "game.odin"
main :: proc() {
Vec3 :: struct {
x, y, z: f32
}
main :: proc() {
v0 := V
v1 := V
v2 := V
}