aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/namelist_62.f90
blob: eb7f4a84c66ca399a7d40e222fa0df41ee1edab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
!
! PR fortran/45066
!
! Contributed by Michael Richmond.
!
! Was failing due to a -fwhole-file bug.
!

MODULE GA_commons
  INTEGER :: nichflg(2)
END MODULE GA_commons

PROGRAM gafortran
  USE GA_commons
  NAMELIST /ga/ nichflg
  READ (23, nml=ga)
END PROGRAM gafortran