summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw2294.pp
blob: 3a8c262ef70696ef0e62bee932844157fb771b82 (plain)
1
2
3
4
5
6
7
8
9
{$H+}
const trap : pchar = 'boese Falle';
var  s : ansistring;
begin
   s:='Dies ist eine ';
   s:=s+'boese Falle';  { see .Ll4: }
   s:=s+'.';            { see .Ll5: }
   writeln(s);
end.