mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
10 lines
123 B
ObjectPascal
10 lines
123 B
ObjectPascal
|
|
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
var
|
|
x: array of byte;
|
|
begin
|
|
// This should free the dynamic array
|
|
x := nil;
|
|
end.
|