mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 04:19:28 +02:00
14 lines
267 B
ObjectPascal
14 lines
267 B
ObjectPascal
unit uw19701;
|
|
{$ifdef FPC}{$mode objfpc}{$h+}{$endif}
|
|
interface
|
|
var
|
|
testvar: array of integer;
|
|
implementation
|
|
|
|
// an empty finalization section should not prevent
|
|
// generating the implicit finalization code
|
|
initialization
|
|
setlength(testvar,100);
|
|
finalization
|
|
end.
|