* crash with Date in type def

This commit is contained in:
peter 2000-10-26 23:25:58 +00:00
parent 16761ea213
commit 358570d0ea

11
tests/tbs/tbs0356.pp Normal file
View File

@ -0,0 +1,11 @@
unit tbs0356;
interface
uses sysutils;
type
Foo =
packed record
Dates : array[1..11] of Date;
end;
implementation
end.