fpc/tests/test/tforin16.pp
paul 5752be310d compiler:
- fix for-in loop for string const array
  - add some test from Alexander S. Klenin
(issue #0014990)

git-svn-id: trunk@14041 -
2009-11-04 12:07:42 +00:00

8 lines
105 B
ObjectPascal

{mode objfpc}
{$apptype console}
const S = 'abc';
var ch: Char;
begin
for ch in S do Writeln(ch);
end.