mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
14 lines
132 B
ObjectPascal
14 lines
132 B
ObjectPascal
var
|
|
test : 2..14;
|
|
|
|
begin
|
|
test:=14;
|
|
case test of
|
|
2..9: halt(1);
|
|
14: ;
|
|
else
|
|
halt(1);
|
|
end;
|
|
writeln('ok');
|
|
end.
|