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