aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_proc_12.f90
blob: 4612d4982f3bd49fcb8007b1edb59e7b3310fb2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do compile }
! Test the fix for PR41258, where an ICE was caused by a search
! for a typebound procedure to resolve d%c%e
!
! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
!
  TYPE a
    TYPE(b), DIMENSION(:), POINTER :: c  ! { dg-error "type that has not been declared" }
  END TYPE
  TYPE(a), POINTER :: d
  CALL X(d%c%e)         ! { dg-error "before it is defined" }
end