mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:11:45 +02:00

- fix for-in loop for empty sets - add some test from Alexander S. Klenin (issue #0014990) git-svn-id: trunk@14042 -
7 lines
84 B
ObjectPascal
7 lines
84 B
ObjectPascal
{ %FAIL}
|
|
{$mode objfpc}
|
|
{$apptype console}
|
|
begin
|
|
for ch in S do Writeln(ch);
|
|
end.
|