Skip to content

IDL Problem Code 90 with alias potential-type-incompatibility

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 may have a fatal type incompatibility at runtime.

For example, when you try to add a number and an object together:

idl
a = 1 + envi()
;   ^^^^^^^^^^ potential type incompatibility

To fix, correct your statement or re-write your code:

idl
e = envi()
a = 1

Licensed under MIT.