public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "damian at rouson dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/55297] New: 4.8 Regression: type-bound operator clashes with abstract interface
Date: Mon, 12 Nov 2012 23:17:00 -0000	[thread overview]
Message-ID: <bug-55297-4@http.gcc.gnu.org/bugzilla/> (raw)


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

             Bug #: 55297
           Summary: 4.8 Regression: type-bound operator clashes with
                    abstract interface
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: damian@rouson.net


$ cat athlete.f90
module athlete_module
  type athlete
  contains
    procedure :: negative
    generic :: operator(-) => negative
  end type
  abstract interface 
    integer function sum_interface(this)
      import athlete
      class(athlete) this
    end function
  end interface
contains
  integer function negative(this)
    class(athlete) ,intent(in) :: this
  end function
end module
$ gfortran-mp-4.7 -c athlete.f90
$ gfortran-mp-4.8 -c athlete.f90
athlete.f90:5.29:

    generic :: operator(-) => negative
                             1
Error: Entity 'negative' at (1) is already present in the interface
wlan-clients-2916:gnu rouson$ gfortran-mp-4.8 --version
GNU Fortran (MacPorts gcc48 4.8-20121021_0) 4.8.0 20121021 (experimental)


             reply	other threads:[~2012-11-12 23:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-12 23:17 damian at rouson dot net [this message]
2012-11-12 23:46 ` [Bug fortran/55297] [4.8 Regression] " dominiq at lps dot ens.fr
2012-11-13 11:20 ` burnus at gcc dot gnu.org
2012-11-16 11:42 ` janus at gcc dot gnu.org
2012-11-16 17:02 ` [Bug fortran/55297] [4.8 Regression] [OOP] " janus at gcc dot gnu.org
2012-11-16 18:17 ` janus at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-55297-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).