mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
18 lines
188 B
ObjectPascal
18 lines
188 B
ObjectPascal
{ %fail}
|
|
{ %norun}
|
|
program terecs5;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TFoo = record
|
|
class procedure Test; // not allowed without static
|
|
end;
|
|
|
|
class procedure TFoo.Test;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|