summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tforin19.pp
blob: 1119b561f3c5792f4f9b5ed75a6aadd6ddc77d15 (plain)
1
2
3
4
5
6
7
{$mode objfpc}
{$apptype console}
var
  ch: Char;
begin
  for ch in [] do Writeln(ch);
end.