fpc/tests/tbs/tb0021.pp
2000-11-30 22:38:14 +00:00

19 lines
233 B
ObjectPascal

{ Old file: tbs0025.pp }
{ tests for a wrong uninit. var. warning OK 0.9.3 }
procedure p1;
type
datetime=record
junk : string;
end;
var
dt : datetime;
begin
fillchar(dt,sizeof(dt),0);
end;
begin
P1;
end.