mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 08:50:46 +01:00
19 lines
171 B
ObjectPascal
19 lines
171 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
tc = class
|
|
destructor destroy; override;
|
|
a: longint;
|
|
end;
|
|
|
|
destructor tc.destroy;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|