fpc/tests/tbs/tb0650.pp

22 lines
200 B
ObjectPascal

unit tb0650;
{$mode objfpc}{$H+}
interface
type
TTest = record
SomeField: String;
end;
TTestType = type TTest;
TTestClass = class
fField: TTestType;
end;
implementation
end.