aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/alloc_comp_constraint_5.f90
blob: d0e57aea593e4695a768596b5ad2435ccc0e3059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
! Check that ALLOCATABLE components aren't allowed to the right of a non-zero
! rank part reference.
program test

    implicit none
    type :: foo
        real, allocatable :: bar(:)
    end type foo
    type(foo), target :: x(3)
    integer :: i
    real, pointer :: p(:)

    allocate(x(:)%bar(5))! { dg-error "must not have the ALLOCATABLE attribute" }
    x(:)%bar(1) = 1.0    ! { dg-error "must not have the ALLOCATABLE attribute" }
    p => x(:)%bar(1)     ! { dg-error "must not have the ALLOCATABLE attribute" }

end program test