mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 21:48:09 +02:00
11 lines
140 B
ObjectPascal
11 lines
140 B
ObjectPascal
{ %version=1.1 }
|
|
|
|
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
var
|
|
x: array of byte;
|
|
begin
|
|
// This should free the dynamic array
|
|
x := nil;
|
|
end.
|