URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [elemental_args_check_6.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! PR fortran/52013
!
type t
end type t
contains
elemental subroutine f(x)
class(t), intent(inout) :: x ! Valid
end subroutine
elemental subroutine g(y) ! { dg-error "Coarray dummy argument 'y' at .1. to elemental procedure" }
class(t), intent(inout) :: y[*]
end subroutine
end
Go to most recent revision | Compare with Previous | Blame | View Log