Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.dg / char_result_9.f90
blob062901e1bed43fe4ff2d1bc1d8a44fcb96ad5d7d
1 ! { dg-do compile }
2 ! PR 18883: Fake result variables of non-constant length, in module
3 module foo
4 contains
5 function s_to_c(chars)
6 character, pointer :: chars(:)
7 character(len=len(chars)) :: s_to_c
8 s_to_c = 'a'
9 end function s_to_c
10 end module foo
12 program huj
14 use foo
16 implicit none
17 character, pointer :: c(:)
18 character(3) :: s
20 allocate(c(5))
21 c = (/"a", "b", "c" /)
22 s = s_to_c(c)
24 end program huj
26 ! { dg-final { cleanup-modules "foo" } }