public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/24186]  New: interface and extends does not cause us to reject invalid code
@ 2005-10-03 23:53 pinskia at gcc dot gnu dot org
  2005-10-30 23:21 ` [Bug java/24186] [3.4/4.0/4.1 Regression] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-03 23:53 UTC (permalink / raw)
  To: java-prs

interface a
{
  void f();
}

class b
{
  void f(){}
}
class d extends b implements a
{
 void f(){}
  static public void main(String args[])
  {
    d eee = new d();
    eee.f();
  }
}


-- 
           Summary: interface and extends does not cause us to reject
                    invalid code
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P2
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug java/24186] [3.4/4.0/4.1 Regression] interface and extends does not cause us to reject invalid code
  2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
@ 2005-10-30 23:21 ` pinskia at gcc dot gnu dot org
  2005-11-12  5:50 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-30 23:21 UTC (permalink / raw)
  To: java-prs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P5
   Target Milestone|---                         |4.1.0


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug java/24186] [3.4/4.0/4.1 Regression] interface and extends does not cause us to reject invalid code
  2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
  2005-10-30 23:21 ` [Bug java/24186] [3.4/4.0/4.1 Regression] " pinskia at gcc dot gnu dot org
@ 2005-11-12  5:50 ` pinskia at gcc dot gnu dot org
  2006-02-28 20:39 ` [Bug java/24186] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-12  5:50 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from pinskia at gcc dot gnu dot org  2005-11-12 05:50 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-11-12 05:50:44
               date|                            |


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug java/24186] [3.4/4.0/4.1/4.2 Regression] interface and extends does not cause us to reject invalid code
  2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
  2005-10-30 23:21 ` [Bug java/24186] [3.4/4.0/4.1 Regression] " pinskia at gcc dot gnu dot org
  2005-11-12  5:50 ` pinskia at gcc dot gnu dot org
@ 2006-02-28 20:39 ` mmitchel at gcc dot gnu dot org
  2006-05-25  2:45 ` [Bug java/24186] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
  2007-01-09 20:52 ` [Bug java/24186] [4.0/4.1/4.2/4.3 " tromey at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-02-28 20:39 UTC (permalink / raw)
  To: java-prs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.0                       |4.1.1


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug java/24186] [4.0/4.1/4.2 Regression] interface and extends does not cause us to reject invalid code
  2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2006-02-28 20:39 ` [Bug java/24186] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2006-05-25  2:45 ` mmitchel at gcc dot gnu dot org
  2007-01-09 20:52 ` [Bug java/24186] [4.0/4.1/4.2/4.3 " tromey at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25  2:45 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from mmitchel at gcc dot gnu dot org  2006-05-25 02:36 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.1                       |4.1.2


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug java/24186] [4.0/4.1/4.2/4.3 Regression] interface and extends does not cause us to reject invalid code
  2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2006-05-25  2:45 ` [Bug java/24186] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2007-01-09 20:52 ` tromey at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at gcc dot gnu dot org @ 2007-01-09 20:52 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from tromey at gcc dot gnu dot org  2007-01-09 20:48 -------
All gcj front end bugs have been fixed by the gcj-eclipse branch merge.
I'm mass-closing the affected PRs.
If you believe one of these was closed in error, please reopen it
with a note explaining why.
Thanks.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.1.2                       |4.3.0


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-01-09 20:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-03 23:53 [Bug java/24186] New: interface and extends does not cause us to reject invalid code pinskia at gcc dot gnu dot org
2005-10-30 23:21 ` [Bug java/24186] [3.4/4.0/4.1 Regression] " pinskia at gcc dot gnu dot org
2005-11-12  5:50 ` pinskia at gcc dot gnu dot org
2006-02-28 20:39 ` [Bug java/24186] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
2006-05-25  2:45 ` [Bug java/24186] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
2007-01-09 20:52 ` [Bug java/24186] [4.0/4.1/4.2/4.3 " tromey at gcc dot gnu dot org

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).