* cdecl methods are required for CLX compatibilit

This commit is contained in:
peter 2003-04-23 12:38:12 +00:00
parent 0284016ee9
commit 86c4522697

View File

@ -1,17 +0,0 @@
{ %FAIL }
{$mode objfpc}
type
tmyclass = class
{ you should not be able to have virtual methods which
are noted as cdecl.
}
procedure myroutine;virtual;cdecl;
end;
procedure tmyclass.myroutine;cdecl;
begin
end;
Begin
end.