Browse Source

* crash with Date in type def

peter 25 năm trước cách đây
mục cha
commit
358570d0ea
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  1. 11 0
      tests/tbs/tbs0356.pp

+ 11 - 0
tests/tbs/tbs0356.pp

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