1 2 3 4 5 6 7 8 9 10 11 12 13
! { dg-do compile } ! { dg-options "-fwhole-file" } ! ! PR fortran/31346 ! program main real, dimension(2) :: a call foo(a) ! { dg-error "must have an explicit interface" } end program main subroutine foo(a) real, dimension(:) :: a end subroutine foo