Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr41347.f90
blobae48857d50731fe2695bc33eb4a24261f906331b
1 ! { dg-do compile }
2 ! { dg-options "-O3" }
3 module hsl_ma41_m
5 implicit none
7 contains
9 subroutine solve_ma41
10 integer, dimension(20) :: info
11 call prininfo(15, info)
12 end subroutine solve_ma41
14 subroutine prininfo (ni, info)
15 integer, intent(in) :: ni
16 integer, intent(in), dimension(:) :: info
18 integer i
20 call prinfo
22 contains
24 subroutine prinfo
25 do i = 1, ni
26 write(*,'(i5,1x,i0)') i, info(i)
27 end do
28 end subroutine prinfo
30 end subroutine prininfo
32 end module hsl_ma41_m