(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
inline_matmul_25.f90
! { dg-do compile }
! { dg-options "-ffrontend-optimize" }
! PR fortran/99839 - ICE in inline_matmul_assign

program p
  real :: x(3, 3) = 1.0
  class(*), allocatable :: z(:, :)
  z = matmul(x, x)
end