PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / char_expr_2.f90
blobf3bfb04b2c827891004cf243d5782703a6730bd9
1 ! { dg-do compile }
2 ! PR fortran/36803
3 ! PR fortran/36795
5 ! "(n)" was simplified to the EXPR_VARIABLE "n"
6 ! and thus "(n)" was judged as definable.
8 interface
9 subroutine foo(x)
10 character, intent(out) :: x(:) ! or INTENT(INOUT)
11 end subroutine foo
12 end interface
13 character :: n(5)
14 call foo( (n) ) ! { dg-error "Non-variable expression" }
15 end