mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 01:30:28 +02:00
19 lines
223 B
ObjectPascal
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.
|