[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / PR100029.f90
blobfd7e4c46032c1d41ba9ab8764b138c18647c147b
1 ! { dg-do run }
3 ! Test the fix for PR100029
6 program foo_p
7 implicit none
9 type :: foo_t
10 end type foo_t
12 class(foo_t), allocatable :: pout
14 call foo_s(pout)
16 contains
18 subroutine foo_s(that)
19 class(foo_t), allocatable, intent(out) :: that(..)
20 end subroutine foo_s
22 end program foo_p