소스 검색

Changed error message to match legacy compiler. Fixes #365.

woollybah 6 년 전
부모
커밋
3eb2145085
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      parser.bmx

+ 1 - 1
parser.bmx

@@ -883,7 +883,7 @@ Type TParser Extends TGenProcessor
 			' for Strict code, void will be converted to Int during semanting.
 			ty=New TVoidType
 		Default
-			If _module.IsSuperStrict() Err "Illegal type expression."
+			If _module.IsSuperStrict() Err "Missing type specifier."
 			ty=New TIntType
 
 			While CParse("ptr")