mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:48:01 +02:00

* pdecsub.pas, parse_proc_direc: when a hint directive is parsed we need to check whether the new token can still be a directive + added test (though that won't help much as we don't check the compiler output yet... :/ ) git-svn-id: trunk@27463 -
14 lines
105 B
ObjectPascal
14 lines
105 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw25959;
|
|
|
|
{$mode delphi}
|
|
procedure test; deprecated;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
test;
|
|
end.
|