False positive - W525

For following code FixInsight incorrectly shows this warning

 W525 Missing INHERITED call in constructor

type
  TTestComp = class(TComponent)
  strict private
    type
      TTestRecord = record
        constructor Create(const A: Integer);
      end;
  end;

constructor TTestComp.TTestRecord.Create(const A: Integer);
begin
  Writeln(A);
end;