rt_gccstream/gcc/testsuite/gfortran.dg/cshift_shift_real_1.f90

9 lines
243 B
Fortran

! { dg-do compile }
! PR 34549 - a real value was accepted for shift.
program main
implicit none
real, dimension(2,2) :: r
data r /1.0, 2.0, 3.0, 4.0/
print *,cshift(r,shift=2.3,dim=1) ! { dg-error "must be INTEGER" }
end program main