fpc/tests/test/tcase50.pp
2020-09-24 11:41:43 +00:00

13 lines
113 B
ObjectPascal

{ %NORUN }
program tcase50;
{$mode ExtendedPascal}
begin
case 5 of
1, 2, 3: ;
otherwise
end;
end.