RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / substring_integer_index.f90
bloba730a75f36b8118164bb9273be41b6ee9d243712
1 ! { dg-do compile }
2 ! PR fortran/50524
4 program foo
5 print *, 'abc'(2.e0:3) ! { dg-error "must be of type INTEGER" }
6 print *,'qwe'(1:1e0) ! { dg-error "must be of type INTEGER" }
7 end program foo