pascalabcnet/TestSuite/formatter_tests/should/case7.pas
Бондарев Иван 18c956b1b5 fix #1767
2019-02-27 20:48:53 +01:00

7 lines
89 B
ObjectPascal

begin
case 0 of
0..1, 2..3: exit;
4..5, 6..7: exit;
else exit;
end;
end.