소스 검색

* crash with Date in type def

peter 25 년 전
부모
커밋
358570d0ea
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  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.