PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_34.f90
blob3375396aa6e86ab3877b15bc49049f27b12b4392
1 ! { dg-do compile }
3 ! PR 46448: [4.6 Regression] [OOP] symbol `__copy_...' is already defined
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 module m0
8 type :: t
9 end type
10 end module
12 module m1
13 use m0
14 class(t), pointer :: c1
15 end module
17 module m2
18 use m0
19 class(t), pointer :: c2
20 end module
22 end