modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / modulo_1.f90
blob52c3b0966b74c03e1110f0e40ae77ca94e53e8d7
1 ! { dg-do compile }
2 ! PR fortran/23912
3 integer(kind=4) i4
4 integer(kind=8) i8
6 i4 = modulo(i4,i8) ! { dg-warning "Extension" }
7 i4 = modulo(i8,i4) ! { dg-warning "Extension" }
9 end