Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
char_allocation_1.f90
blob: e0aefcf7845ae717a52725b8e7b03a18a8ce80c5 [
file
] [
log
] [
blame
]
!
PR fortran
/
31974
!
{
dg
-
do
run
}
subroutine foo
(
n
)
integer
::
n
character
(
len
=
n
)
::
v
(
n
)
v
=
''
if
(
any
(
v
/=
''
))
STOP
1
end
subroutine foo
call foo
(
7
)
end