+1

[W525] False positive with several constructors

Anton Shchyrov 9 years ago 0
TTest = class
  constructor Create;
  constructor Create2;
end;

constructor TTest.Create;
begin
  inherited Create;
end;

constructor TTest.Create2;  // W525 Missing INHERITED call in constructor 
begin
  Create;
end;