repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
class_34.f90
blob
3375396aa6e86ab3877b15bc49049f27b12b4392
1
! { dg-do compile }
2
!
3
! PR 46448: [4.6 Regression] [OOP] symbol `__copy_...' is already defined
4
!
5
! Contributed by Janus Weil <janus@gcc.gnu.org>
6
7
module
m0
8
type
::
t
9
end type
10
end module
11
12
module
m1
13
use
m0
14
class
(
t
),
pointer
::
c1
15
end module
16
17
module
m2
18
use
m0
19
class
(
t
),
pointer
::
c2
20
end module
21
22
end