When using a "multi-line"-style comment i.e., /* ... */ , an unmatched double quote (") inside causes the compiler to give the following message (per my example):
Error: string not terminated (line 7 file:abc.4dg)
Fatal error: Found 1 unmatched comment block end '*/', starting on line 2 (line 7 file:abc.4dg)
My code example with error on 2nd line:
#platform "uLCD-28PT_GFX2"
/* "abc */
func main()
repeat
forever
endfunc
Is this a compiler bug or "normal" C-like behavior?
Error: string not terminated (line 7 file:abc.4dg)
Fatal error: Found 1 unmatched comment block end '*/', starting on line 2 (line 7 file:abc.4dg)
My code example with error on 2nd line:
#platform "uLCD-28PT_GFX2"
/* "abc */
func main()
repeat
forever
endfunc
Is this a compiler bug or "normal" C-like behavior?
Comment