bcc crash

BlitzMax Forums/Brucey's Modules/bcc crash

GW(Posted 2016) [#1]
This one I was finally able to pin down..
SuperStrict 
Framework brl.basic

'--------------------------
Type tA
	Field b:tB[1,1]
End Type
'--------------------------
Type tB
	Field bFieldArray%[1,1]
End Type
'--------------------------

Local a_array:tA[1,1]

a_array[0,0] = New tA
Print a_array[0,0].b.Dimensions()[0]  '<--- !



Brucey(Posted 2016) [#2]
I've just pushed a commit which should fix this.


GW(Posted 2016) [#3]
That's fast. Thanks!