tb0136.pp 223 B

123456789101112131415161718
  1. { %FAIL }
  2. { This shouldc not compile, cdecl'ed constructor are not allowed }
  3. {$mode objfpc}
  4. type
  5. tmyclass = class
  6. destructor destroy; cdecl;
  7. end;
  8. destructor tmyclass.destroy;cdecl;
  9. begin
  10. end;
  11. Begin
  12. end.