aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/block_6.f08
blob: 621a93304b0489cb93fb1588cc163a0f8b1eb2b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do run { xfail *-*-* } }
! { dg-options "-std=f2008 -fall-intrinsics" }

! Check for correct scope of variables that are implicit typed within a BLOCK.
! This is not yet implemented, thus XFAIL'ed the test.

PROGRAM main
  IMPLICIT INTEGER(a-z)

  BLOCK
    ! a gets implicitly typed, but scope should not be limited to BLOCK.
    a = 42
  END BLOCK

  ! Here, we should still access the same a that was set above.
  IF (a /= 42) CALL abort ()
END PROGRAM main