blob: 003175a47fdb52b192424ea1a603295e5f071593 [file] [log] [blame]
! { 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
end associate
end subroutine test_alter_state1
end module test