fpc/tests/webtbs/tw10623.pp
Jonas Maebe be2119b489 * simply discard overloaded routines which cannot accept a variant
when determining the optimal candidate for a single variant
    parameter, rather than giving an internal error (mantis #10623)

git-svn-id: trunk@9726 -
2008-01-12 19:01:49 +00:00

61 lines
977 B
ObjectPascal

{$mode delphi}
uses
Variants
;
type
// TMockMethod
//
TMockMethod = class
private
FReturnValue: variant;
public
//: Set return value
procedure Returns(AValue: Variant); overload;
procedure Returns(AValue: Pointer); overload; // if i change this from type Pointer to Double it works
procedure Returns(AValue: Integer); overload;
end;
function Failure: TMockMethod;
begin
Result := TMockMethod.Create;
{ TODO: Free Pascal Compiler version 2.2.0 [2007/08/30] for i386 crash with Internal error 2006122804 on this line
using fpc -Sd PascalMockBug.pas or fpc -S2 PascalMockBug.pas
}
Result.Returns(Result.FReturnValue);
end;
{ TMockMethod }
procedure TMockMethod.Returns(AValue: Integer);
begin
halt(1);
end;
procedure TMockMethod.Returns(AValue: Pointer);
begin
halt(1);
end;
procedure TMockMethod.Returns(AValue: Variant);
begin
writeln('ok');
end;
var
c: tmockmethod;
begin
c:=Failure;
c.free;
end.