@@ -0,0 +1,17 @@
+{ %FAIL }
+
+program thintdir3a;
+{$mode objfpc}
+{$warn 5043 error}
+type
+ TTest = 1..9 deprecated;
+ TRec = record
+ f: array of TTest;
+ end;
+begin
+end.
+program thintdir3b;
+ f: array of array of TTest;
@@ -0,0 +1,15 @@
+program thintdir4a;
+ TTestArray = array of TTest;
+program thintdir4b;
+ TTestArray = array of array of TTest;
+ TTestArray = array[TTest] of LongInt;