RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pure_initializer_3.f90
blob91ec178f14d4f1edef567295d595bcf206dac108
1 ! { dg-do compile }
3 ! PR fortran/42922
5 ! Contributed by mrestelli@gmail.com
7 pure subroutine psub()
8 implicit none
9 type ilist
10 integer :: i = 0
11 end type ilist
12 type(ilist) :: x
13 x%i = 1
14 end subroutine psub