summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/associate_54.f90
blob: 680ad5d14a2ed443107ddb5a9bef16c763dc96f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
! { dg-do compile }
!
! Test the fix for PR93701.
!
! Contributed by Simon Brass  <simon.brass@desy.de>
!
module test
  implicit none

  integer, parameter :: N_STATE = 1, &
       TEST_STATE = 1

  type :: test_t
     integer, dimension(:), allocatable :: state
  end type test_t

contains

  subroutine test_allocate (obj)
    class(test_t), intent(out) :: obj
    allocate (obj%state(N_STATE))
  end subroutine test_allocate

  subroutine test_alter_state1 (obj, a)
    class(test_t), intent(inout) :: obj
    integer, intent(in) :: a
    associate (state => obj%state(TEST_STATES)) ! { dg-error "is used as array" }
!      state = a
      state(TEST_STATE) = a ! { dg-error "array reference of a non-array" }
    end associate
  end subroutine test_alter_state1

end module test