pascalabcnet/TestSuite/formatter_tests/should/foreach4.pas

10 lines
137 B
ObjectPascal
Raw Permalink Normal View History

2018-09-20 22:21:16 +03:00
begin
var i := 0;
foreach var s in Arr(1, 2, 3) do
begin
i := s;
if s = 2 then
break;
end;
assert(i = 2);
end.