This is the mail archive of the gcc-bugs@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]

[Bug fortran/47136] [OOP] possible name resolution problems between MODULE and INTERFACE?


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47136

--- Comment #2 from janus at gcc dot gnu.org 2011-01-02 13:25:37 UTC ---
Here is a variant which gives the same error message:

MODULE a
  TYPE, ABSTRACT :: t
  CONTAINS
    PROCEDURE, NOPASS :: pp => s
  END TYPE
CONTAINS
  SUBROUTINE s()
  END SUBROUTINE
END MODULE

MODULE s
  USE a
END MODULE


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