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

10 lines
189 B
Fortran

! { dg-do compile }
! PR fortran/23912
integer(kind=4) i4
integer(kind=8) i8
i4 = modulo(i4,i8) ! { dg-warning "Extension" }
i4 = modulo(i8,i4) ! { dg-warning "Extension" }
end