URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [ptr-func-1.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-std=f2008 -fall-intrinsics" }!! PR fortran/46100!! Pointer function as definable actual argument! - a Fortran 2008 feature!integer, target :: tgtcall one (two ())if (tgt /= 774) call abort ()containssubroutine one (x)integer, intent(inout) :: xif (x /= 34) call abort ()x = 774end subroutine onefunction two ()integer, pointer :: twotwo => tgttwo = 34end function twoend
