(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
pr36192.f90
! { dg-do compile }
! PR fortran/36192.f90
!
program three_body
  real, parameter :: n = 2, d = 2
  real, dimension(n,d) :: x  ! { dg-error "Expecting a scalar INTEGER" }
  x(1,:) = (/ 1.0, 0.0 /)
end program three_body