mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
18 lines
240 B
ObjectPascal
18 lines
240 B
ObjectPascal
program statictest;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TMyClass = class
|
|
public
|
|
class procedure StaticCall; static;
|
|
end;
|
|
|
|
class procedure TMyClass.StaticCall;
|
|
begin
|
|
WriteLn('Static method was called!');
|
|
end;
|
|
|
|
begin
|
|
TMyClass.StaticCall;
|
|
end. |