fpc/tests/tbf/tb0136.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

19 lines
223 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.