aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocatable_length.f90
blob: e8b638fac880f6167fe254770e608b78334ccce3 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! { dg-options "-Werror -Wall" }
module foo
   contains
      subroutine bar 
         character(len=:), allocatable :: s(:)
         call bah(s)
      end subroutine bar
end module foo