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/] [entry_11.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do compile }! PR31609 module that calls a contained function with an ENTRY point! Test case derived from the PRMODULE ksbin1_aux_modCONTAINSSUBROUTINE subi = k()END SUBROUTINE subFUNCTION j ()print *, "in j"j = 111ENTRY k ()print *, "in k"k = 222END FUNCTION jEND MODULE ksbin1_aux_modprogram testituse ksbin1_aux_modl = j()print *, ll = k()print *, lend program testit
