lazarus/components/codetools/tests/moduletests/fdt_arrays.pas
mattias fa480d0669 codetools: tests: added array test
git-svn-id: trunk@54728 -
2017-04-25 09:52:08 +00:00

24 lines
183 B
ObjectPascal

unit fdt_arrays;
{$mode objfpc}{$H+}
interface
type
TBird = class
public
Arr: array of longint;
end;
procedure DoIt;
implementation
procedure DoIt;
begin
end;
end.