fpc/tests/test/thintdir1.pp
paul 38da67e08b tests: add hint directives test
git-svn-id: trunk@15760 -
2010-08-10 04:30:59 +00:00

17 lines
264 B
ObjectPascal

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.