aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_call_10.f03
blob: 22a2a72ba68f9e33fcc06a4fa027c00733542cb4 (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
! { dg-do run }
!
! PR 39630: [F03] Procedure Pointer Components with PASS
!
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>

module m

 type :: t
  integer :: i
 contains
  procedure, pass(y) :: foo
 end type t

contains

 subroutine foo(x,y)
  type(t),optional :: x
  class(t) :: y
  if(present(x)) then
    print *, 'foo', x%i, y%i
  else
    print *, 'foo', y%i
  end if
 end subroutine foo

end module m

use m
type(t) :: t1, t2
t1%i = 3
t2%i = 4
call t1%foo()
call t2%foo()
call t1%foo(t2)
end