blob: 18bebb5650472bcef222f15804a0f33592f2b4f0 [file] [log] [blame]
! { dg-do run }
! PR17678
! We were incorrectly setting use-associated variables to unallocated
! on procedure entry.
module foo
integer, dimension(:), allocatable :: bar
end module
program main
use foo
allocate (bar(10))
call init
end program main
subroutine init
use foo
if (.not.allocated(bar)) STOP 1
end subroutine init