public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: mcmartin@stanford.edu
To: gcc-gnats@gcc.gnu.org
Subject: java/8298: Incomplete enforcement of constant expressions in switch/case
Date: Mon, 21 Oct 2002 00:56:00 -0000	[thread overview]
Message-ID: <20021021075514.8373.qmail@sources.redhat.com> (raw)


>Number:         8298
>Category:       java
>Synopsis:       Incomplete enforcement of constant expressions in switch/case
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          accepts-illegal
>Submitter-Id:   net
>Arrival-Date:   Mon Oct 21 00:56:00 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     mcmartin@stanford.edu
>Release:        gcj 3.2
>Organization:
>Environment:

>Description:
The GCJ front-end should reject this, as the cases y.a and y.b don't match the definition of ConstantExpression in section 15.28 of the JLS (as required for cases in a switch in section 14.10 of the JLS):

public class test {
    static final int a = 1;
    static final int b = 2;

    public static void main(String[] args) {
	int x = 2;
	test y = new test();
	switch(x) {
	case y.a:
	    System.out.println("Equal to a");
	    break;
	case y.b:
	    System.out.println("Equal to b");
	    break;
	default:
	    System.out.println("Something random");
	    break;
	}
    }
}
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


                 reply	other threads:[~2002-10-21  7:56 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20021021075514.8373.qmail@sources.redhat.com \
    --to=mcmartin@stanford.edu \
    --cc=gcc-gnats@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).