blob: 28cd7c83699613e36e18bfd5506880a8c815b940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
! { 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" } }
|