fpc/tests/webtbf/tw10998a.pp
2010-01-08 18:01:28 +00:00

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.