aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/select_type_3.f03
blob: 13cd3c11a821f841001c7ad0eef5301e77173739 (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
41
42
! { dg-do run }
!
! SELECT TYPE with temporaries
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

  type :: t1
    integer :: i = -1
  end type t1

  type, extends(t1) :: t2
    integer :: j = -1
  end type t2

  class(t1), pointer :: cp
  type(t2), target :: b

  cp => b

  select type (cp)
  type is (t1)
    cp%i = 1
  type is (t2)
    cp%j = 2
  end select

  print *,b%i,b%j
  if (b%i /= -1) call abort()
  if (b%j /= 2) call abort()

  select type (cp)
  type is (t1)
    cp%i = 4
  type is (t2)
    cp%i = 3*cp%j
  end select

  print *,b%i,b%j
  if (b%i /= 6) call abort()
  if (b%j /= 2) call abort()

end