mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 08:13:42 +02:00
17 lines
237 B
ObjectPascal
17 lines
237 B
ObjectPascal
{ %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. |