blob: 0c3e8694a6c3ae5985204422ccefde33c6b71cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
! { 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 "Cannot deallocate" "" }
deallocate(m, stat=j) ! { dg-error "cannot be" "" }
deallocate(m,stat=n,errmsg=err) ! { dg-error "cannot be" "" }
end subroutine sub
|