view gcc/testsuite/gfortran.dg/host_assoc_function_6.f90 @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { 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