Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.dg / select_3.f90
blobd1f2d6904993de270d65ef75c61e4a9909a85ea7
1 ! { dg-do run }
2 ! Short test program with a CASE statement that uses a range.
4 program select_4
5 integer i
6 do i = 1, 34, 4
7 select case(i)
8 case (:5)
9 if (i /= 1 .and. i /= 5) call abort
10 case (13:21)
11 if (i /= 13 .and. i /= 17 .and. i /= 21) call abort
12 case (29:)
13 if (i /= 29 .and. i /= 33) call abort
14 case default
15 if (i /= 9 .and. i /= 25) call abort
16 end select
17 end do
18 end program select_4