This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch, fortran] PR29464 - problem with duplicate USE, ONLY of procedure in INTERFACE


Steve,

I believe I ran into this bug or one that is similar a long time ago with renaming USEd symbol.

   module a
     integer :: i = 4, j = 8
   end module a

   program b
     use a, only : x => i, y => i ! Working version y => j
   end program

The "y => i" would fail.
Yes, and I had a directory named "Steve's bug" which was used to develop the fix!

Thanks

Paul


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]