fpc/tests/webtbs/tw3261.pp
oro06 feb8de2d67 *arm-wince wince added to win32 tests
git-svn-id: trunk@2615 -
2006-02-17 07:38:55 +00:00

27 lines
537 B
ObjectPascal

{ %norun }
{ %target=win32,wince }
{ Source provided for Free Pascal Bug Report 3261 }
{ Submitted by "Andreas Hausladen" on 2004-08-18 }
{ e-mail: Andreas.Hausladen@gmx.de }
program test;
{$mode delphi}
type
TTest = class(TObject)
public
procedure myfunc(arg1: Integer; arg2: TTest); overload;
procedure myfunc(arg1: TTest); overload;
end;
procedure TTest.myfunc(arg1: Integer; arg2: TTest); external 'test.dll' name 'TTest_myfunc';
procedure TTest.myfunc(arg1: TTest);
begin
if arg1 = nil then ;
end;
begin
end.