mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 05:50:02 +02:00
* new bug
This commit is contained in:
parent
eb4df64ffc
commit
fe63da77e0
16
tests/webtbs/tw2807.pp
Normal file
16
tests/webtbs/tw2807.pp
Normal file
@ -0,0 +1,16 @@
|
||||
{$mode delphi}
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
var
|
||||
a:array of integer;
|
||||
begin
|
||||
a := nil;
|
||||
SetLength(a,3);
|
||||
a[0] := 0;
|
||||
a[1] := 1;
|
||||
a[2] := 2;
|
||||
WriteLn(IntToStr(a[0]));
|
||||
a := nil;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user