0

[W507] Regression from 2015.11 to 2016.04: Missing semicolon suppresses warning

Uwe Schuster 9 years ago 0

FixInsight 2016.04 does not show a W507 warning, which 2015.11 did show. It seems to be related to the missing semicolon.

procedure Foo;
begin
end;
procedure Bar;
begin
if True then
Foo
else
Foo //no semicolon here suppresses W507
end;