PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.dg / matmul_18.f90
blob2ff7c081151e95e5aa150b0eb25a9c21faab332d
1 ! { dg-do run }
2 program p
3 integer, parameter :: a(3,2) = 1
4 real, parameter :: b(2,3) = 2
5 real d(3,3)
6 d = 4
7 if (any(d /= matmul(a,b))) STOP 1
8 end