aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90
blob: c37edb6bc48a929f4e07a7f1fc03837ff07bf55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! Check that equivalence with allocatable components isn't allowed (PR 20541)
program main

    type :: foo
        sequence
        integer, allocatable :: x(:)
    end type foo

    type(foo) :: a
    integer :: b

    equivalence (a, b) ! { dg-error "cannot have ALLOCATABLE components" }

end program main