* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_17.f90
blob5c39cf06247a6c71b9b166b94d79d1a938ceee5e
1 ! { dg-do run }
2 ! Test the fix for PR61406
3 ! Contributed by Adam Hirst <adam@aphirst.karoo.co.uk>
4 program test
5 implicit none
6 real :: theta = 1.0
8 associate (n => [cos(theta), sin(theta)])
9 if (abs (norm2(n) - 1.0) .gt. 1.0e-4) call abort
10 end associate
12 end program test