mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
17 lines
160 B
ObjectPascal
17 lines
160 B
ObjectPascal
{ %FAIL }
|
|
program Project1;
|
|
{$mode objfpc}{$H+}
|
|
|
|
Type
|
|
|
|
TClass_A = class
|
|
class procedure DoIt();
|
|
End;
|
|
|
|
procedure TClass_A.DoIt();
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|