summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/altreturn_2.f90
blob: d0556d0370d894be22586802b51b8ab151fe14e4 (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
       program altreturn_2
         call foo()  ! { dg-error "Missing alternate return" }
       contains
         subroutine foo(*)
           return
         end subroutine
       end program