mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +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
|
|
destructor destroy; cdecl;
|
|
end;
|
|
|
|
|
|
destructor tmyclass.destroy;cdecl;
|
|
begin
|
|
end;
|
|
|
|
|
|
Begin
|
|
end.
|