mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 23:08:08 +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 -
20 lines
148 B
ObjectPascal
20 lines
148 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0231;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TTest = class
|
|
procedure Test; static;
|
|
end;
|
|
|
|
procedure TTest.Test;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|