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