blob: d1f2d6904993de270d65ef75c61e4a9909a85ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
! { dg-do run }
! Short test program with a CASE statement that uses a range.
!
program select_4
integer i
do i = 1, 34, 4
select case(i)
case (:5)
if (i /= 1 .and. i /= 5) call abort
case (13:21)
if (i /= 13 .and. i /= 17 .and. i /= 21) call abort
case (29:)
if (i /= 29 .and. i /= 33) call abort
case default
if (i /= 9 .and. i /= 25) call abort
end select
end do
end program select_4
|