summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/class_33.f90
blob: 7c3c197262a6c1f740b3bbf4d4aa2f7199420574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }
!
! PR 46971: [4.6 Regression] [OOP] ICE on long class names
!
! Contributed by Andrew Benson <abenson@its.caltech.edu>

module Molecular_Abundances_Structure
  type molecularAbundancesStructure
  end type
  class(molecularAbundancesStructure), pointer :: molecules
end module

! { dg-final { cleanup-modules "molecular_abundances_structure" } }