aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/typebound_proc_21.f90
blob: 382f6d8a8fe65751b216694896b1872cf534d2e2 (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
! { dg-do compile }
!
! PR fortran/47455
!
module class_t
    type :: tx
        integer, dimension(:), allocatable :: i
    end type tx
    type :: t
        type(tx), pointer :: x
    contains
        procedure :: calc
        procedure :: find_x
    end type t
contains
    subroutine calc(this)
        class(t), target :: this
        this%x = this%find_x()
    end subroutine calc
    function find_x(this)
        class(t), intent(in) :: this
        type(tx), pointer :: find_x
        find_x => null()
    end function find_x
end module class_t