aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/host_assoc_blockdata_1.f90
blob: 7f24fecb0e00a9a1dcddc48dfc03ab739dda17c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! PR 38672 - this used to ICE.
MODULE globals
  TYPE :: type1
     integer :: x
  END TYPE type1
  TYPE (type1) :: pdm_bps
END module globals
BLOCK DATA
   use globals
END BLOCK DATA