summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/class_33.f90
blob: b809fb1df98cdc972890d7ab4316aa82757c26ac (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" } }