Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocatable_scalar_8.f90
blobde5d11090720877b61155125661bc43a95213e9c
1 ! { dg-do run }
3 ! PR fortran/41872
5 ! Character functions returning allocatable scalars
7 program test
8 implicit none
9 if (func () /= 'abc') STOP 1
10 contains
11 function func() result (str)
12 character(len=3), allocatable :: str
13 if (allocated (str)) STOP 2
14 allocate (str)
15 str = 'abc'
16 end function func
17 end program test