fpc/tests/tbs/tb0021.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

18 lines
232 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.