lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / altreturn_2.f90
blob9abf3501fb1b38fd81c77ce5ffa4a5cad83269a4
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
4 program altreturn_2
5 call foo() ! { dg-error "Missing alternate return" }
6 contains
7 subroutine foo(*)
8 return
9 end subroutine
10 end program