1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
! { dg-do compile } ! { dg-additional-options "-ffrontend-optimize" } ! PR 84133 - this used to ICE. Original test case by ! Gerhard Steinmetz. program p real :: x(2,2) = 1.0 real :: z(2,2) associate (y => matmul(x,x)) z = y end associate print *, z end