URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [block_6.f08] - Rev 302
Compare with Previous | Blame | View Log
! { 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