RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr36192.f90
blob7ff53155b27195feb317459876dd8acebd11983d
1 ! { dg-do compile }
2 ! PR fortran/36192.f90
4 program three_body
5 real, parameter :: n = 2, d = 2
6 real, dimension(n,d) :: x ! { dg-error "Expecting a scalar INTEGER" }
7 x(1,:) = (/ 1.0, 0.0 /)
8 end program three_body