fpc/tests/tbf/tb0136.pp
2002-10-29 20:46:05 +00:00

19 lines
231 B
ObjectPascal

{ %FAIL }
{ This shouldc not compile, cdecl'ed constructor are not allowed }
{$mode objfpc}
type
tmyclass = class
destructor destroy; cdecl;
end;
destructor tmyclass.destroy;cdecl;
begin
end;
Begin
end.