blob: 9209760e50b445034adff337201581e521a77eeb [file] [log] [blame]
! { dg-do run }
! { dg-options "-O -finline-matmul-limit=30 -fcheck=all" }
! { dg-shouldfail "Dimension of array B incorrect in MATMUL intrinsic" }
program main
real, dimension(:,:), allocatable :: a
real, dimension(:), allocatable :: b
real, dimension(:), allocatable :: res
allocate (a(2,2), b(3))
call random_number(a)
call random_number(b)
res = matmul(a,b)
print *,res
end program main
! { dg-output "Fortran runtime error: Dimension of array B incorrect in MATMUL intrinsic.*" }