mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 15:49:26 +02:00
18 lines
168 B
ObjectPascal
18 lines
168 B
ObjectPascal
{ %FAIL }
|
|
|
|
program thintdir3b;
|
|
|
|
{$mode objfpc}
|
|
{$warn 5043 error}
|
|
|
|
type
|
|
TTest = 1..9 deprecated;
|
|
|
|
TRec = record
|
|
f: array of array of TTest;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|