aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/intent_out_6.f90
blob: a36316428fa0fa438734e0dcdeb8983303c68645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
! { dg-do run }
!
! PR fortran/41850
!
module test_module
  implicit none
contains
  subroutine sub2(a)
    implicit none
    real,allocatable,intent(out),optional :: a(:)
    if(present(a)) then
      if(allocated(a)) call abort()
      allocate(a(1))
      a(1) = 5
    end if
  end subroutine sub2
  subroutine sub1(a)
    implicit none
    real,allocatable,intent(out),optional :: a(:)
!    print *,'in sub1'
    call sub2(a)
    if(present(a)) then
      if(a(1) /= 5) call abort()
    end if
  end subroutine sub1
end module test_module

program test
  use test_module
  implicit none
  real, allocatable :: x(:)
  allocate(x(1))
  call sub1()
  x = 8
  call sub1(x)
  if(x(1) /= 5) call abort()
end program