Parsing bug with dot "." and literal strings

Archives Forums/BlitzMax Bug Reports/Parsing bug with dot "." and literal strings

grable(Posted 2008) [#1]
The dot operator recognizes Strings as valid input, but it does not end up in the resulting code.
This should probably spit out some error me thinks.

Oh, and im using v1.28 and Windows XP...
Local a:String[] = [ "a", "b" . "c", "d" ]
For Local s:String = EachIn a
	Print s
Next

Print

Local ss:String = "a" . "b"
Print ss

Print

Print ss . "a" . "b"