URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [sibling_dummy_procedure_2.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! This checks the fix for PR 26041.!! Contributed by H.J. Lu <hongjiu.lu@intel.com>module foopublic bar_interface bar_module procedure barend interfacepublic xxx_interface xxx_module procedure xxxend interfacecontainssubroutine bar(self, z)interfacefunction self(z) result(res)real zreal(kind=kind(1.0d0)) :: resend functionend interfaceend subroutinesubroutine xxx(self,z)interfacefunction self(z) result(res)real zreal(kind=kind(1.0d0)) :: resend functionend interfacecall bar_(self, z)end subroutineend! { dg-final { cleanup-modules "foo" } }
