fpc/tests/webtbs/tw15930.pp
Jonas Maebe 87c9773ac0 + also support & to escape identifiers (and for octal notation) in Delplhi
mode (patch by Blaise Thorn, mantis #15930)

git-svn-id: trunk@15031 -
2010-03-21 23:33:44 +00:00

17 lines
158 B
ObjectPascal

{ %norun }
{$mode delphi}
var
&file: integer;
&do: string;
&in: boolean;
&for: char;
begin
&file:=1;
&do:='abc';
&in:=true;
&for:='h'
end.