fpc/tests/webtbs/tw10002.pp
Jonas Maebe 82a0749970 * prefer non-matching orddef conversions to orddef-to-pointer conversions
(mantis #10002) and also to orddef-to-real conversions
    (delphi-compatible). More tests and fixes will follow later.

git-svn-id: trunk@9015 -
2007-10-31 17:20:37 +00:00

32 lines
479 B
ObjectPascal

program OverloadMistaken;
{$ifdef fpc}
{$mode delphi}
{$endif}
type _ulong = Cardinal;
TCCC = class
public
constructor Create(Size: _ulong=0); overload;
constructor Create(Buffer: Pointer); overload;
end;
constructor TCCC.Create(Size: _ulong);
begin
inherited Create;
WriteLn('TCCC.Create(Size: _ulong) called.');
end;
constructor TCCC.Create(Buffer: Pointer);
begin
halt(1);
end;
var c: TCCC;
l: longint;
begin
c := TCCC.Create(20);
c := TCCC.Create(l);
end.