(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
PR100098.f90
! { dg-do run }
! { dg-options "-fdump-tree-original" }
!
! Test the fix for PR100098
!

program main_p
  implicit none

  type :: foo_t
    integer :: i
  end type foo_t

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

  call foo_p(bar_p)
  call foo_a(bar_a)

contains

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

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

  subroutine foo_a(that)
    class(foo_t), 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" } }