URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [proc_ptr_21.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! Tests the fix for PR40591 in which the interface 'sub2'! for 'pptr2' was not resolved.!! Contributed by Tobias Burnus <burnus@gcc.gnu.org>!program maincall testcontainssubroutine sub1(arg)integer argarg = arg + 1end subroutine sub1subroutine test()procedure(sub1), pointer :: pptr1procedure(sub2), pointer :: pptr2integer ii = 0pptr1 => sub1call pptr1 (i)pptr1 => sub2call pptr1 (i)pptr2 => sub1call pptr2 (i)pptr2 => sub2call pptr2 (i)if (i .ne. 22) call abortend subroutine testsubroutine sub2(arg)integer argarg = arg + 10end subroutine sub2end program main
