[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr92781.f90
blob67a1961205ad5472f39b258809d10df7691d597f
1 ! PR fortran/92781
2 ! { dg-do compile }
4 function foo ()
5 character(:), allocatable :: foo
6 call bar ()
7 foo = 'abc'
8 contains
9 subroutine bar
10 end
11 end