1! { dg-do run }
2! Test the fix for PR61406
3! Contributed by Adam Hirst  <adam@aphirst.karoo.co.uk>
4program test
5  implicit none
6  real :: theta = 1.0
7
8  associate (n => [cos(theta), sin(theta)])
9    if (abs (norm2(n) - 1.0) .gt. 1.0e-4) STOP 1
10  end associate
11
12end program test
13