aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/class_29.f03
blob: b27793f90897bb4558f18869096e77aaea4605f4 (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
! { dg-do compile }
!
! PR 46313: [OOP] OOP-ABI issue, ALLOCATE issue, CLASS renaming issue
!
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>

module m1
  type mytype
    real :: a(10) = 2
  end type
end module m1

module m2
  type mytype
    real :: b(10) = 8
  end type
end module m2

program p
use m1, t1 => mytype
use m2, t2 => mytype
implicit none

class(t1), allocatable :: x
class(t2), allocatable :: y

allocate (t1 :: x)
allocate (t2 :: y)

print *, x%a
print *, y%b
end