URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [proc_ptr_comp_20.f90] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
!
! PR 40869: [F03] PPC assignment checking
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
implicit none
interface func
procedure f1,f2 ! { dg-error "Ambiguous interfaces" }
end interface
interface operator(.op.)
procedure f1,f2 ! { dg-error "Ambiguous interfaces" }
end interface
type :: t1
procedure(integer), pointer, nopass :: ppc
end type
type :: t2
procedure(real), pointer, nopass :: ppc
end type
type(t1) :: o1
type(t2) :: o2
procedure(logical),pointer :: pp1
procedure(complex),pointer :: pp2
pp1 => pp2 ! { dg-error "Type/rank mismatch" }
pp2 => o2%ppc ! { dg-error "Type/rank mismatch" }
o1%ppc => pp1 ! { dg-error "Type/rank mismatch" }
o1%ppc => o2%ppc ! { dg-error "Type/rank mismatch" }
contains
real function f1(a,b)
real,intent(in) :: a,b
f1 = a + b
end function
integer function f2(a,b)
real,intent(in) :: a,b
f2 = a - b
end function
end
Go to most recent revision | Compare with Previous | Blame | View Log