pascalabcnet/TestSuite/extensionoperators3.pas

8 lines
160 B
ObjectPascal
Raw Permalink Normal View History

2018-03-25 19:55:26 +03:00
function operator*(s1:string;s2:single):byte; extensionmethod := 1;
function GetSingle := single(0);
begin
var a := '' * GetSingle();
assert(a=1);
end.