4 ! This test used to be rejected because the typebound call A%GET was
5 ! simplified to MY_GET which is an ambiguous name in the main program
8 ! Original testcase by Salvator Filippone <sfilippone@uniroma2.it>
9 ! Reduced by Janus Weil <janus@gcc.gnu.org>
14 procedure
, nopass
:: get
=> my_get
18 print *,"my_get (mod1)"
24 subroutine my_get() ! must have the same name as the function in mod1
25 print *,"my_get (mod2)"
36 end subroutine call_get