aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/same_name_1.f90
blob: cbeb875e36b3eabc376fd14ff482549740b64807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do assemble }
module n
private u
contains
  subroutine u
  end subroutine u
end module n
module m
  private :: u
contains
  subroutine u
  end subroutine u
end module m