aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/select_type_40.f90
blob: 4bfa1c7e848a426bff0d52f8a9a70ce7e2a47c9e (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! { dg-additional-options "-fdefault-integer-8" }
! PR 78238 - this used to cause an ICE.
! Original test cae by Gerhard Steinmetz
class(*), allocatable :: q
select type (x => q)
type is (real)
end select
end