OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [host_assoc_function_6.f90] - Rev 858

Go to most recent revision | Compare with Previous | Blame | View Log

! { dg-do compile }
! Tests the fix for PR38765 in which the use associated symbol
! 'fun' was confused with the contained function in 'mod_b'
! because the real name was being used instead of the 'use'
! name..
!
! Contributed by Paul Thomas  <pault@gcc.gnu.org>
! from a report by Marco Restelli.
!
module mod_a
  implicit none
  public :: fun
  private
contains
  pure function fun(x) result(mu)
    real, intent(in) :: x(:,:)
    real :: mu(2,2,size(x,2))
    mu = 2.0
  end function fun
end module mod_a

module mod_b
  use mod_a, only: &
  a_fun => fun
  implicit none
  private
contains
  pure function fun(x) result(mu)
    real, intent(in) :: x(:,:)
    real :: mu(2,2,size(x,2))
    mu = a_fun(x)
  end function fun
end module mod_b

! { dg-final { cleanup-modules "mod_a mod_b" } }

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.