mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
15 lines
160 B
ObjectPascal
15 lines
160 B
ObjectPascal
{ %fail}
|
|
program tarrconstr3;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TAB = array of byte;
|
|
var
|
|
D: TAB;
|
|
begin
|
|
// CREATE expected but INIT found
|
|
D := TAB.init(1, 1);
|
|
end.
|
|
|