URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [proc_decl_10.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! PR33162 INTRINSIC functions as ACTUAL argument! Test case adapted from PR by Jerry DeLisle <jvdelisle@gcc.gnu.org>module mimplicit noneinterfacedouble precision function my1(x)double precision, intent(in) :: xend function my1end interfaceinterfacereal(kind=4) function my2(x)real, intent(in) :: xend function my2end interfaceinterfacereal function my3(x, y)real, intent(in) :: x, yend function my3end interfaceend moduleprogram testuse mimplicit noneprocedure(dcos):: my1 ! { dg-error "Cannot change attributes" }procedure(cos) :: my2 ! { dg-error "Cannot change attributes" }procedure(dprod) :: my3 ! { dg-error "Cannot change attributes" }end program test! { dg-final { cleanup-modules "m" } }
