summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/typebound_generic_8.f03
blob: 0ee6610e1733ef6d1e0ae88526a1ddd2e6c01121 (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
! { dg-do compile }
!
! PR 44565: [4.6 Regression] [OOP] ICE in gimplify_expr with array-valued generic TBP
!
! Contributed by Hans-Werner Boschmann <boschmann@tp1.physik.uni-siegen.de>

module ice6

  type :: t
   contains
     procedure :: get_array
     generic :: get_something => get_array
  end type

contains

  function get_array(this)
    class(t) :: this
    real,dimension(2) :: get_array
  end function get_array

  subroutine do_something(this)
    class(t) :: this
    print *,this%get_something()
  end subroutine do_something

end module ice6 

! { dg-final { cleanup-modules "ice6" } }