fpc/tests/webtbs/tw32179.pp
Jonas Maebe 9bd931e931 * make "formal const/var" parameters the least preferred conversion
(mantis #32179)
  - removed code to handle conversion to formaldef parameters that are not by
    reference (so the default conversion preference is kept)

git-svn-id: trunk@40012 -
2018-10-21 21:02:17 +00:00

27 lines
552 B
ObjectPascal

{$mode delphi}
type
TGuidHelper = record helper for TGUID
Class Function Create(const Data): TGUID; overload; static; inline;
Class Function Create(const S: string): TGUID; overload; static;
end;
class function TGuidHelper.Create(const Data): TGUID;
begin
halt(1);
end;
class function TGuidHelper.Create(const S: string): TGUID;
begin
writeln('B');
end;
var
c: PChar;
g: TGUID;
begin
g.Create(utf8string(c)); // will print 'A'
g.Create(unicodestring(c)); // will print 'A'
g.Create(shortstring(c)); // will print 'A'
end.