mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 14:17:23 +02:00
16 lines
227 B
ObjectPascal
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.
|
|
|