IDL Problem Code 0 with alias not-closed 
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 code appears when a statement, expression, or syntax is not properly closed.
For example, this error can be detected from function calls missing a closing parentheses:
idl
a = myFunc(42
            ; ^^^ not closedOr when compound/block statements don't have an end:
idl
; main level program
if !true then begin
  lifeMeaning = 42
; ^^^ no "endif" detected
end