mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:09:35 +02:00
20 lines
158 B
ObjectPascal
20 lines
158 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
tc = class
|
|
constructor test;
|
|
a: longint;
|
|
end;
|
|
|
|
constructor tc.test;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|