lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / inline_matmul_25.f90
blobdf8ad06c123e0da6703612df1ef93747fa9f6d95
1 ! { dg-do compile }
2 ! { dg-options "-ffrontend-optimize" }
3 ! PR fortran/99839 - ICE in inline_matmul_assign
5 program p
6 real :: x(3, 3) = 1.0
7 class(*), allocatable :: z(:, :)
8 z = matmul(x, x)
9 end