IDL Problem Code 88
with alias illegal-ordered-hash-op
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 using ordered hashes in a way that is not allowed.
For example, when you try to add an orderedhash
and a list
together:
idl
a = orderedhash() + list()
; ^^^^^^^^^^^^^^^^^^^^^^ illegal ordered hash op
To fix, correct your statement or re-write your code:
idl
a = orderedhash('my-list', list())
; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ OK!