mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00

(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 -
27 lines
552 B
ObjectPascal
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.
|