mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
58 lines
631 B
ObjectPascal
58 lines
631 B
ObjectPascal
program tw24871;
|
|
|
|
{$mode delphi}
|
|
{$APPTYPE CONSOLE}
|
|
|
|
type
|
|
TRec = record
|
|
class procedure Foo(Self: TObject); static;
|
|
end;
|
|
|
|
{ TClass }
|
|
|
|
TClass = class
|
|
class procedure Foo(Self: TObject); static;
|
|
end;
|
|
|
|
{ TRec }
|
|
|
|
class procedure TRec.Foo(Self: TObject);
|
|
|
|
procedure Foo1;
|
|
|
|
procedure Foo2;
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
{ TClass }
|
|
|
|
class procedure TClass.Foo(Self: TObject);
|
|
|
|
procedure Foo1;
|
|
|
|
procedure Foo2;
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
begin
|
|
Self.ClassName;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|