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/] [impure_assignment_3.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do compile }!! PR 43169: [OOP] gfortran rejects PURE procedure with SELECT TYPE construct!! Original test case by Todd Hay <haymaker@mail.utexas.edu>! Modified by Janus Weil <janus@gcc.gnu.org>implicit nonereal :: gcontainspure subroutine sub1(x)type :: myTypereal :: aend type myTypeclass(myType), intent(inout) :: xreal :: r3select type(x)class is (myType)x%a = 42.r3 = 43.g = 44. ! { dg-error "Cannot assign to variable" }end selectend subroutinepure subroutine sub2real :: r1blockreal :: r2r1 = 45.r2 = 46.g = 47. ! { dg-error "Cannot assign to variable" }end blockend subroutinepure subroutine sub3blockinteger, save :: i ! { dg-error "cannot be specified in a PURE procedure" }integer :: j = 5 ! { dg-error "is not allowed in a PURE procedure" }end blockend subroutineend
