summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/PR100097.f90
blob: f927d293e2c32f3829a248e8b81f52784d3662e0 (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
! { dg-do run }
! { dg-options "-fdump-tree-original" }
!
! Test the fix for PR100097
!

program main_p
  implicit none

  class(*), pointer     :: bar_p(:)
  class(*), allocatable :: bar_a(:)

  call foo_p(bar_p)
  call foo_a(bar_a)

contains

  subroutine foo_p(that)
    class(*), pointer, intent(out) :: that(..)

    select rank(that)
    rank(1)
    rank default
      stop 1
    end select
  end subroutine foo_p

  subroutine foo_a(that)
    class(*), allocatable, intent(out) :: that(..)

    select rank(that)
    rank(1)
    rank default
      stop 2
    end select
  end subroutine foo_a

end program main_p

! { dg-final { scan-tree-dump "bar_a._data.dtype = \\{.* .rank=1,.*\\}" "original" } }
! { dg-final { scan-tree-dump "bar_p._data.dtype = \\{.* .rank=1,.*\\}" "original" } }