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.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [global_references_2.f90] - Rev 154
Compare with Previous | Blame | View Log
! { dg-do compile }
! This program tests the patch for PR25964. This is a
! regression that would not allow a common block and a statement
! to share the same name.
!
! Contributed by Paul Thomas <pault@gcc.gnu.org>
common /foo/ a, b, c
foo (x) = x + 1.0
print *, foo (0.0)
end