URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [char_expr_2.f90] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! PR fortran/36803
! PR fortran/36795
!
! "(n)" was simplified to the EXPR_VARIABLE "n"
! and thus "(n)" was judged as definable.
!
interface
subroutine foo(x)
character, intent(out) :: x(:) ! or INTENT(INOUT)
end subroutine foo
end interface
character :: n(5)
call foo( (n) ) ! { dg-error "Non-variable expression" }
end
Go to most recent revision | Compare with Previous | Blame | View Log