Code to reproduce crash: ``` python hexrays.decompile(here()).treeitems[0] ``` Expected behaviour: - `hexrays.decompile(here()).treeitems[0]` should return first item in `cfuncptr_t.treeitems` Workaround: ``` python c = hexrays.decompile(here()) c.__deref__() c.treeitems[0] ```