c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / zero_length_1.f90
blob996f98606cb696ee845e86790bdb754ecd08d966
1 ! { dg-do run }
2 ! PR libfortran/31210
3 program test
4 implicit none
5 integer :: l = 0
6 character(len=20) :: s
8 write(s,'(A,I1)') foo(), 0
9 if (trim(s) /= "0") STOP 1
11 contains
13 function foo()
14 character(len=l) :: foo
15 foo = "XXXX"
16 end function
18 end program test