pascalabcnet/TestSuite/formatter_tests/input/case7.pas

7 lines
150 B
ObjectPascal
Raw Permalink Normal View History

2019-02-27 22:48:53 +03:00
begin
case 0 of
0 .. 1 , 2 .. 3 : exit ;
4 .. 5 , 6 .. 7 : exit ;
else exit ;
end;
end.