Skip to content

IDL Problem Code 35 with alias after-continuation

Want to disable me? Check out the configuration guide to learn more.

Bug Alert

This is not a syntax error, but it helps catch accidental bugs.

If you have a line continuation, and something besides a comment afterwards, this gets reported:

idl
a = $ wrong
  ; ^^^^^^^ problem
  42

To correct, remove the code

idl
a = $
  42

Technically anything after the line continuation is treated as a comment and ignored, but even IDL experts can accidentally introduce bugs this way by "commenting" out real code.

Licensed under MIT.