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



             Bug #: 55895

           Summary: multiple type-bound procedures

    Classification: Unclassified

           Product: gcc

           Version: 4.8.0

            Status: UNCONFIRMED

          Severity: minor

          Priority: P3

         Component: fortran

        AssignedTo: unassig...@gcc.gnu.org

        ReportedBy: valerywe...@hotmail.com





Dear All

Should gfortran complain with the following code (so far it doesnt with the

trunk)?

Valery



module aaaa

  type :: t

   contains

     procedure ::foo => afoo, bfoo

  end type t

contains

  subroutine afoo(this)

    class(t) :: this

  end subroutine afoo

  subroutine bfoo(this)

    class(t) :: this

  end subroutine bfoo

end module aaaa

Reply via email to