Debug line number error

Archives Forums/BlitzMax Bug Reports/Debug line number error

JoshK(Posted 2010) [#1]
This code demonstrates the problem. The debugger will highlight line 8 instead of line 9:
Type thing
	Field a:Int
EndType

Local t:thing
Local a:Int

Select o'instead, this is
Case t.a'this line should be highlighted
	RuntimeError "!"
EndSelect

Took a long time to figure out what was happening.