AVR: tree-optimization/115307 - Work around isinf bloat from early passes.
[official-gcc.git] / gcc / testsuite / gfortran.dg / invalid_contains_2.f90
blob72c1e216f0717f7c5423dba49098cafcc373460c
1 ! { dg-do compile }
2 ! PR18923 segfault after subroutine name confusion.
3 program foo
4 contains
5 subroutine foo(i) ! { dg-error "conflicts with PROCEDURE" }
6 integer :: i ! { dg-error "data declaration statement" }
7 character(len=selected_int_kind(i)) :: c ! { dg-error "data declaration statement" }
8 end subroutine ! { dg-error "Expecting END PROGRAM statement" }
9 end program foo