IDL Problem Code 94
with alias ptr-de-ref-illegal
Want to disable me? Check out the configuration guide to learn more.
Execution Error
This is a fatal error that prevents IDL from compiling or running code
This problem, using types, identifies when you are de-referencing a variable that is not a pointer.
Here is a reproduce case:
idl
a = 5
b = *a
; ^^ illegal de-ref
To fix, correct your statement or re-write your code:
idl
a = 5
b = 42 * a