[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / whole_file_34.f90
blob9b421e004ae1f482a701e0c27fbf5b6e361283d3
1 ! { dg-do compile }
3 ! PR fortran/48788
5 ! Contributed by Zdenek Sojka
7 function foo ()
8 end function foo
9 character(4), external :: foo ! { dg-error "Return type mismatch of function" }
10 character(4) :: x
11 x = foo ()
12 END