mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 23:08:08 +02:00
19 lines
226 B
ObjectPascal
19 lines
226 B
ObjectPascal
{ %FAIL }
|
|
{ This shouldc not compile, cdecl'ed constructor are not allowed }
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
tmyobject = object
|
|
constructor create; cdecl;
|
|
end;
|
|
|
|
|
|
constructor tmyobject.create;cdecl;
|
|
begin
|
|
end;
|
|
|
|
|
|
Begin
|
|
end.
|