E2540 Cannot seal abstract type '%s' (Delphi)

From RAD Studio
Jump to: navigation, search

Go Up to Error and Warning Messages (Delphi)

This occurs when declaring an abstract type as sealed.


program E2540;
{E2540 Cannot seal abstract type '%s'}
{$APPTYPE CONSOLE}

uses
  SysUtils,
  classes;

type
  TMyClass = class sealed
    procedure setArea; Virtual; Abstract; //E2540
  end;

begin

end.