lazarus/components/codetools/tests/laztests/bug28866_prg.pas
mattias 4245b8129c codetools: added tests bug #28866
git-svn-id: trunk@50086 -
2015-10-16 21:37:22 +00:00

16 lines
227 B
ObjectPascal

program bug28866_prg;
{$mode objfpc}{$H+}
uses
bug28866_unit1;
var
S: String;
O: TObject;
begin
S.Twice{declaration:bug28866_unit1.TStringHelper.Twice};
O.Test{declaration:bug28866_unit1.TObjectHelper.Test};
end.