summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/use_allocated_1.f90
blob: e590f6a95619d8e59cb1819e595b96f1bb9d205a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! { 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)) call abort
end subroutine init

! { dg-final { cleanup-modules "foo" } }