2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_16.f90
blob9129388b25bd62fd989d951b597d5ea5c32fd8a7
1 ! { dg-do compile }
2 ! PR 60834 - this used to ICE.
4 module m
5 implicit none
6 type :: t
7 real :: diffusion=1.
8 end type
9 contains
10 subroutine solve(this, x)
11 class(t), intent(in) :: this
12 real, intent(in) :: x(:)
13 integer :: i
14 integer, parameter :: n(1:5)=[(i,i=1, 5)]
16 associate( nu=>this%diffusion)
17 associate( exponential=>exp(-(x(i)-n) ))
18 do i = 1, size(x)
19 end do
20 end associate
21 end associate
22 end subroutine solve
23 end module m