0
Fixed

[W521] False positive when result is set in finally

Lübbe Onken 10 years ago updated by Roman 10 years ago 2
The following code leads to a false positive warning in FixInsight:

function TForm1.FalsePositive: integer;
begin
  try

  finally
    Result := 0;
  end;
end;