mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
22 lines
200 B
ObjectPascal
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.
|
|
|