URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [deallocate_alloc_opt_2.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
subroutine sub(i, j, err)
implicit none
character(len=*), intent(in) :: err
integer, intent(in) :: j
integer, intent(in), allocatable :: i(:)
integer, allocatable :: m(:)
integer n
deallocate(i) ! { dg-error "variable definition context" }
deallocate(m, stat=j) ! { dg-error "variable definition context" }
deallocate(m,stat=n,errmsg=err) ! { dg-error "variable definition context" }
end subroutine sub
Go to most recent revision | Compare with Previous | Blame | View Log