fpc/tests/webtbs/tw11543.pp
florian 91116c2e21 * fixed test
git-svn-id: trunk@11267 -
2008-06-23 19:16:24 +00:00

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.