Commit 1d792a6d by Steven G. Kargl

re PR fortran/64107 ([F95] Pure function as array size)

2018-03-06  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/64107
        * gfortran.dg/pr64107.f90: New test.

From-SVN: r258311
parent 66a00b11
2018-03-06 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/64107
* gfortran.dg/pr64107.f90: New test.
2017-03-06 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/84697
......
! { dg-do compile }
! PR fortran/64107
! Code contribute by fxcoudert at gcc dot gnu dot org
! Appears to be fixed by patch for PR fortran/83633
module m1
contains
pure integer function foo()
foo = 2
end function
end module
subroutine test
use m1
integer :: x1(foo())
end subroutine
module m
use m1
integer :: x2(foo()) ! { dg-error "array with nonconstant bounds" }
contains
subroutine sub
integer :: x3(foo())
end subroutine
end module
program p
use m1
integer :: x4(foo()) ! { dg-error "array with nonconstant bounds" }
end program
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment