mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
16 lines
171 B
ObjectPascal
16 lines
171 B
ObjectPascal
{ %fail }
|
|
|
|
program tarrconstr4;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TAB = array[0..1] of byte;
|
|
var
|
|
D: TAB;
|
|
begin
|
|
// only dynamic arrays are allowed
|
|
D := TAB.Create(1, 1);
|
|
end.
|
|
|