for instance: typedef struct foo { int i; } foo; foo arr[10]; print: arr is the debug-info read correctly? is this printed correctly?
Test code: typedef struct foo { int i; } foo; foo arr[3]; ------------------------ (fhpd) print arr [0.0] {{ i=0, },{ i=0, },{ i=0, }} (fhpd) print arr --type [0.0] foo [3] (fhpd) print arr[1] --type [0.0] foo