aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/exit_2.f08
blob: 9b383f03bd4c1200bf55eb61ae87a6e5250b260d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
! { dg-do compile }
! { dg-options "-std=f2008" }

! PR fortran/44709
! Check that the resolving of loop names in parent namespaces introduced to
! handle intermediate BLOCK's does not go too far and other sanity checks.

! Contributed by Daniel Kraft, d@domob.eu.

PROGRAM main
  IMPLICIT NONE
  
  EXIT ! { dg-error "is not within a construct" }
  EXIT foobar ! { dg-error "is unknown" }
  EXIT main ! { dg-error "is not a construct name" }

  mainLoop: DO
    CALL test ()
  END DO mainLoop

  otherLoop: DO
    EXIT mainLoop ! { dg-error "is not within construct 'mainloop'" }
  END DO otherLoop

CONTAINS

  SUBROUTINE test ()
    EXIT mainLoop ! { dg-error "is unknown" }
  END SUBROUTINE test

END PROGRAM main