URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [allocatable_scalar_11.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { 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
Go to most recent revision | Compare with Previous | Blame | View Log