E2552 CLASS or RECORD constraint and class type constraint cannot be specified together (Delphi)

From RAD Studio
Jump to: navigation, search

Go Up to Error and Warning Messages (Delphi)

This occurs when specifying both record and class constraints in a generic class.


program E2552;
{E2552 CLASS or RECORD constraint and class type constraint cannot be specified together}

{$APPTYPE CONSOLE}

uses
  SysUtils;

type

  TSampleClass <T: record, T: class> = record

  end;
begin

end.