blob: 72c1e216f0717f7c5423dba49098cafcc373460c [file] [log] [blame]
! { dg-do compile }
! PR18923 segfault after subroutine name confusion.
program foo
contains
subroutine foo(i) ! { dg-error "conflicts with PROCEDURE" }
integer :: i ! { dg-error "data declaration statement" }
character(len=selected_int_kind(i)) :: c ! { dg-error "data declaration statement" }
end subroutine ! { dg-error "Expecting END PROGRAM statement" }
end program foo