some fixes in syntaxchecking array initializer values

This commit is contained in:
Irmen de Jong
2019-04-16 01:50:12 +02:00
parent e384822b2c
commit 390043e9e8
4 changed files with 28 additions and 5 deletions

View File

@@ -60,7 +60,7 @@ of values together (and use it multiple times). Something like::
struct Point {
ubyte color
word[3] vec = [0,0,0]
word[] vec = [0,0,0]
}
Point p1