mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 11:10:36 +01: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.
|