mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 07:08:29 +02:00

pdecsub.pas, pd_static: * check whether the given pd is an operator or a class method not inside an Object and generate an error if either of these is true msg/errore.msg, msgidx.inc, msgtxt.inc: * add a message to inform that a certain procedure directive is not allowed + added tests git-svn-id: trunk@23944 -
21 lines
179 B
ObjectPascal
21 lines
179 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0232;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch advancedrecords}
|
|
|
|
type
|
|
TTest = record
|
|
procedure Test; static;
|
|
end;
|
|
|
|
procedure TTest.Test;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|