URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [char_allocation_1.f90] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
! PR fortran/31974
! { dg-do run }
subroutine foo (n)
integer :: n
character (len = n) :: v(n)
v = ''
if (any (v /= '')) call abort
end subroutine foo
call foo(7)
end
Go to most recent revision | Compare with Previous | Blame | View Log