pascalabcnet/TestSuite/formatter_tests/should/foreachvar2.pas
Бондарев Иван 136a60fdf3 fix #1218
fix #1219
fix #1220
2018-09-20 21:21:16 +02:00

8 lines
95 B
ObjectPascal

begin
var s := [1, 2, 3];
foreach var x in s do
begin
var y := x + x;
end;
end.