RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pure_formal_proc_1.f90
blob4a55563c878e52238f85832ebad359de39a25eab
1 ! { dg-do compile }
2 ! Test fix for PR30034 in which the legal, pure procedure formal
3 ! argument was rejected as an error.
5 ! Contgributed by Troban Trumsko <trumsko@yahoo.com>
7 pure subroutine s_one ( anum, afun )
8 integer, intent(in) :: anum
9 interface
10 pure function afun (k) result (l)
11 implicit none
12 integer, intent(in) :: k
13 integer :: l
14 end function afun
15 end interface
16 end subroutine s_one