blob: 95666981ac0bc6541a6eeed18dc777c1a385cda2 [file] [log] [blame]
! { 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