fpc/tests/tbf/tb0134.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
constructor create; cdecl;
end;
constructor tmyclass.create;cdecl;
begin
end;
Begin
end.