mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-02 07:42:36 +02:00
19 lines
161 B
ObjectPascal
19 lines
161 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
tc = class
|
|
constructor create;
|
|
a: longint;
|
|
end;
|
|
|
|
constructor tc.create;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|