c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocatable_length.f90
blobe8b638fac880f6167fe254770e608b78334ccce3
1 ! { dg-do compile }
2 ! { dg-options "-Werror -Wall" }
3 module foo
4 contains
5 subroutine bar
6 character(len=:), allocatable :: s(:)
7 call bah(s)
8 end subroutine bar
9 end module foo