mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00

* don't allow to apply the same hint directive twice * change parser_e_proc_dir_not_allowed to more generic variant parser_e_dir_not_allowed - they are similar and 'procedure' prefix does not give more information about the error. * maybe_parse_hint_directives() uses procdef settings for initial values + add tests git-svn-id: trunk@25720 -
18 lines
275 B
ObjectPascal
18 lines
275 B
ObjectPascal
{ %NORUN }
|
|
program thintdir1;
|
|
|
|
// test the possibility to use the hint modifiers as regular identifiers
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
deprecated = integer;
|
|
const
|
|
unimplemented = 1;
|
|
platform = 2;
|
|
var
|
|
experimental: deprecated = unimplemented;
|
|
|
|
begin
|
|
end.
|