mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:28:04 +02:00
16 lines
141 B
ObjectPascal
16 lines
141 B
ObjectPascal
procedure p1;
|
|
type
|
|
datetime=record
|
|
junk : string;
|
|
end;
|
|
var
|
|
dt : datetime;
|
|
begin
|
|
fillchar(dt,sizeof(dt),0);
|
|
end;
|
|
|
|
begin
|
|
P1;
|
|
end.
|
|
|