URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [argument_checking_10.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do compile }!! PR fortran/34425!! Contributed by Joost VandeVondele!IMPLICIT NONEINTEGER :: i(-1:1)INTEGER :: j(-2:-1)CALL S(i)CALL S(j) ! { dg-warning "Actual argument contains too few elements for dummy argument 'i' .2/3." }CONTAINSSUBROUTINE S(i)INTEGER :: i(0:2)END SUBROUTINEEND
