mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00

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