mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
22 lines
195 B
ObjectPascal
22 lines
195 B
ObjectPascal
unit uw40395c;
|
|
|
|
interface
|
|
|
|
type
|
|
trec = record
|
|
a,b,c,d: longint;
|
|
end;
|
|
|
|
procedure test; inline;
|
|
|
|
implementation
|
|
|
|
procedure test; inline;
|
|
var
|
|
r: trec;
|
|
begin
|
|
r:=default(trec);
|
|
end;
|
|
|
|
end.
|