Skip to content

IDL Problem Code 12 with alias reserved-var

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 error gets reported when you name a variable that matches a reserved word.

There are some statements that for program control (and only that).

Here is an example:

idl
a = for
;   ^^^ problem

To fix, change your variable name.

idl
a = myAwesomeVar
;   ^^^ fixed!

Licensed under MIT.