mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
29 lines
358 B
ObjectPascal
29 lines
358 B
ObjectPascal
program trtti11;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
type
|
|
PFoo = ^TFoo;
|
|
TFoo = packed record
|
|
public
|
|
F: Integer;
|
|
S: string;
|
|
end;
|
|
|
|
var
|
|
PF: PFoo;
|
|
begin
|
|
try
|
|
GetMem(PF, SizeOf(TFoo));
|
|
InitializeArray(PF, TypeInfo(TFoo), 1);
|
|
PF.S := 'foo';
|
|
FinalizeArray(PF, TypeInfo(TFoo), 1);
|
|
FreeMem(PF);
|
|
except
|
|
Halt(1);
|
|
end;
|
|
end.
|