URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [generic_actual_arg.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! Tests fix for PR20886 in which the passing of a generic procedure as! an actual argument was not detected.!! The second module and the check that CALCULATION2 is a good actual! argument was added following the fix for PR26374.!! Contributed by Joost VandeVondele <jv244@cam.ac.uk>!MODULE TESTINTERFACE CALCULATIONMODULE PROCEDURE C1, C2END INTERFACECONTAINSSUBROUTINE C1(r)INTEGER :: rEND SUBROUTINESUBROUTINE C2(r)REAL :: rEND SUBROUTINEEND MODULE TESTMODULE TEST2INTERFACE CALCULATION2MODULE PROCEDURE CALCULATION2, C3END INTERFACECONTAINSSUBROUTINE CALCULATION2(r)INTEGER :: rEND SUBROUTINESUBROUTINE C3(r)REAL :: rEND SUBROUTINEEND MODULE TEST2USE TESTUSE TEST2CALL F(CALCULATION) ! { dg-error "GENERIC procedure" }CALL F(CALCULATION2) ! OK because there is a same name specific, but: ! { dg-error "More actual than formal arguments" }ENDSUBROUTINE F()END SUBROUTINE! { dg-final { cleanup-modules "test test2" } }
