mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02: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.
|