aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocatable_function_11.f90
blob: 1a2831e186f5b74617d7595376d7bc67ad170a4e (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
! { dg-do compile }
! PR fortran/109500 - check F2018:8.5.3 Note 1
!
! The result of referencing a function whose result variable has the
! ALLOCATABLE attribute is a value that does not itself have the
! ALLOCATABLE attribute.

program main
  implicit none
  integer, allocatable  :: p
  procedure(f), pointer :: pp
  pp => f
  p = f()
  print *, allocated (p)
  print *, is_allocated (p)
  print *, is_allocated (f())  ! { dg-error "is a function result" }
  print *, is_allocated (pp()) ! { dg-error "is a function result" }
  call s (p)
  call s (f())  ! { dg-error "is a function result" }
  call s (pp()) ! { dg-error "is a function result" }

contains
  subroutine s(p)
    integer, allocatable :: p
  end subroutine s

  function f()
    integer, allocatable :: f
    allocate (f, source=42)
  end function

  logical function is_allocated(p)
    integer, allocatable :: p
    is_allocated = allocated(p)
  end function
end program