fpc/tests/test/tnoext1.pp
Jonas Maebe a48a37d38b * fixed extended syntax checking {$x-} by moving it from the typecheck pass
to the parser, so that it only looks at what the programmer wrote rather
    than at all statements that the compiler may generate internally
    (mantis #11619)
  + several tests for {$x-} mode
  * modified tenumerators1 so it compiles without extended syntax enabled
    (to check for..in with {$x-})

git-svn-id: trunk@15075 -
2010-03-27 12:51:27 +00:00

10 lines
65 B
ObjectPascal

{ %fail }
{$x-}
function f: longint;
begin
end;
begin
f;
end.