URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [nesting_3.f90] - Rev 694
Compare with Previous | Blame | View Log
! check to make the nested function dawsonseries_v gets the correct! fake return decl and that the outer (dawson_v) has an assignment of! just the fake return decl for real and not the inner's return decl.! { dg-do compile }FUNCTION dawson_v()IMPLICIT NONEREAL,DIMENSION(1) :: dawson_vdawson_v = 1.0CONTAINSFUNCTION dawsonseries_v()IMPLICIT NONEREAL, DIMENSION(1) :: dawsonseries_vdawsonseries_v=1.0END FUNCTION dawsonseries_vEND FUNCTION dawson_v
