pascalabcnet/TestSuite/formatter_tests/should/case7.pas

7 lines
89 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.