view gcc/testsuite/gfortran.dg/allocatable_scalar_11.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
!
! PR fortran/46484
!

function g()
  implicit none
  integer, allocatable :: g
  call int()
    print *, loc(g) ! OK
contains
  subroutine int()
    print *, loc(g) ! OK
    print *, allocated(g) ! OK
  end subroutine int
end function

implicit none
integer, allocatable :: x
print *, allocated(f) ! { dg-error "must be a variable" }
print *, loc(f) ! OK
contains
function f()
  integer, allocatable :: f
  print *, loc(f) ! OK
  print *, allocated(f) ! OK
end function
end