aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/select_type_7.f03
blob: 554b6cd122d42a9c2f3e6ae639e49d80e895fa3a (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
33
34
35
36
37
38
39
40
! { dg-do run }
!
! PR 41766: [OOP] SELECT TYPE selector as actual argument with INTENT(INOUT)
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

 implicit none

 type t1
   integer :: a
 end type

 type, extends(t1) :: t2
   integer :: b
 end type

 class(t1),allocatable :: cp

 allocate(t2 :: cp)

 select type (cp)
   type is (t2)
     cp%a = 98
     cp%b = 76
     call s(cp)
     print *,cp%a,cp%b
     if (cp%a /= cp%b) call abort()
   class default
     call abort()
 end select

contains

  subroutine s(f)
    type(t2), intent(inout) :: f
    f%a = 3
    f%b = 3
  end subroutine

end