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