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

19 lines
218 B
ObjectPascal

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