* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gfortran.dg / use_14.f90
blob63f3dff98b054ef3ef6ebda34b7fa034dfb68f8e
1 ! { dg-do compile }
3 ! PR fortran/34657
5 module test_mod
6 interface
7 subroutine my_sub (a)
8 real a
9 end subroutine
10 end interface
11 end module
13 subroutine my_sub (a)
14 use test_mod, gugu => my_sub
15 real a
16 print *, a
17 end subroutine
19 END