mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 20:13:00 +02:00
18 lines
306 B
ObjectPascal
18 lines
306 B
ObjectPascal
unit bug28861_unit2;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
bug28861_unit1;
|
|
|
|
implementation
|
|
|
|
begin
|
|
'Hello'.Twice{declaration:bug28861_unit1.TStringHelper.Twice};
|
|
'Hello'.Thrice{declaration:bug28861_unit1.TStringHelper.Thrice};
|
|
'Hello'.TheLength{declaration:bug28861_unit1.TStringHelper.TheLength};
|
|
end.
|
|
|