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.fortran-torture/] [execute/] [nullarg.f90] - Rev 303
Compare with Previous | Blame | View Log
! This is the testcase from PR 12841. We used to report a type/rank mismatch! when passing NULL() as an argument to a function.MODULE TPUBLIC :: ACONTAINSSUBROUTINE A(B)REAL, POINTER :: BIF (ASSOCIATED(B)) CALL ABORT()END SUBROUTINE AEND MODULE TUSE TCALL A(NULL())END
