aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/host_assoc_types_1.f90
blob: 4a2377df015892fe319cef409010e508ec9cbc1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do compile }
! Tests the fix for PR29232, in which the invalid code below was not
! diagnosed.
!
! Contributed by Tobias Burnus  <tobias.burnus@physik.fu-berlin.de>
!
MODULE test
     TYPE vertex
           INTEGER :: k
     END TYPE vertex
CONTAINS
     SUBROUTINE S1()
         TYPE(vertex) :: a  ! { dg-error "cannot be host associated" }
         vertex : DO i=1,2  ! { dg-error "incompatible object of the same name" }
         ENDDO vertex
     END SUBROUTINE
END MODULE test