mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:28:09 +02:00
21 lines
224 B
ObjectPascal
21 lines
224 B
ObjectPascal
{ %fail }
|
|
program Project1;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TTest = object
|
|
class procedure myproc;
|
|
end;
|
|
|
|
class procedure TTest.myproc;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p: procedure;
|
|
begin
|
|
p := TTest.myproc;
|
|
end.
|
|
|