[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / generic_2.f90
blob802e966c4baf32a71cfa08f1a99317f9c7e1b72e
1 ! { dg-do compile }
2 ! testcase from PR 17583
3 module bidon
5 interface
6 subroutine drivexc(nspden,rho_updn)
7 integer, intent(in) :: nspden
8 integer, intent(in) :: rho_updn(nspden)
9 end subroutine drivexc
10 end interface
12 end module bidon
14 subroutine nonlinear(nspden)
16 use bidon
18 integer,intent(in) :: nspden
20 end subroutine nonlinear