URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [select_3.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! Short test program with a CASE statement that uses a range.!program select_4integer ido i = 1, 34, 4select case(i)case (:5)if (i /= 1 .and. i /= 5) call abortcase (13:21)if (i /= 13 .and. i /= 17 .and. i /= 21) call abortcase (29:)if (i /= 29 .and. i /= 33) call abortcase defaultif (i /= 9 .and. i /= 25) call abortend selectend doend program select_4
