OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [generic_6.f90] - Blame information for rev 325

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

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do compile }
2
! Tests the patch for PR28873, in which the call create () would cause an
3
! error because resolve.c(resolve_generic_s) was failing to look in the
4
! parent namespace for a matching specific subroutine. This, in fact, was
5
! a regression due to the fix for PR28201.
6
!
7
! Contributed by Drew McCormack  
8
!
9
module A
10
  private
11
  interface create
12
    module procedure create1
13
  end interface
14
  public :: create
15
contains
16
  subroutine create1
17
    print *, "module A"
18
  end subroutine
19
end module
20
 
21
module B
22
  private
23
  interface create
24
    module procedure create1
25
  end interface
26
  public :: create
27
contains
28
  subroutine create1(a)
29
    integer a
30
    print *, "module B"
31
  end subroutine
32
end module
33
 
34
module C
35
  use A
36
  private
37
  public useCreate
38
contains
39
  subroutine useCreate
40
    use B
41
    call create()
42
    call create(1)
43
  end subroutine
44
end module
45
 
46
  use c
47
  call useCreate
48
end
49
! { dg-final { cleanup-modules "A B C" } }

powered by: WebSVN 2.1.0

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