summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw1286.pp
blob: 000c4787de54070ab4bcfb69704bf84f71481829 (plain)
1
2
3
4
5
6
7
{$ifdef fpc}{$mode objfpc}{$endif}
uses sysutils;
 var S:String;
     par:array [0..1] of TVarRec; { array of const here is illegal ! }
begin
 writeln(format(S, par));
end.