aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/global_references_2.f90
blob: bf2528006a07e193db61881313eb6b1b7bc372b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }
! { dg-options "-std=legacy" }
!
! 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