mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:28:00 +02:00
26 lines
389 B
ObjectPascal
26 lines
389 B
ObjectPascal
{ %norun }
|
|
unit tw11543;
|
|
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
interface
|
|
|
|
type
|
|
TSetOfChar = set of char;
|
|
|
|
ttestclass = class(tobject)
|
|
procedure p(const a: array of WideChar); overload;
|
|
procedure p(const a: TSetOfChar); overload;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure ttestclass.p(const a: array of WideChar);
|
|
begin
|
|
end;
|
|
|
|
procedure ttestclass.p(const a: TSetOfChar);
|
|
begin
|
|
end;
|
|
|
|
end.
|