Explorar el Código

* crash with Date in type def

peter hace 25 años
padre
commit
358570d0ea
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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.