mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 07:34:28 +02:00
20 lines
161 B
ObjectPascal
20 lines
161 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
tc = class
|
|
procedure test;
|
|
register: longint;
|
|
end;
|
|
|
|
procedure tc.test;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|