mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 14:23:25 +02:00
19 lines
218 B
ObjectPascal
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.
|