mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
14 lines
130 B
ObjectPascal
14 lines
130 B
ObjectPascal
{ %fail}
|
|
program tarrconstr2;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TAB = array of byte;
|
|
var
|
|
D: TAB;
|
|
begin
|
|
D := TAB.create(1+2, 'c');
|
|
end.
|
|
|