test/tools/javac/enum/EnumAsIdentifier.java

Wed, 08 Oct 2014 14:16:40 -0700

author
asaha
date
Wed, 08 Oct 2014 14:16:40 -0700
changeset 2586
f5e5ca7505e2
parent 0
959103a6100f
permissions
-rw-r--r--

Merge

aoqi@0 1 /**
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @bug 8025537
aoqi@0 4 * @author sogoel
aoqi@0 5 * @summary enum keyword used as an identifier
aoqi@0 6 * @compile/ref=EnumAsIdentifier4.out -XDrawDiagnostics -source 1.4 EnumAsIdentifier.java
aoqi@0 7 * @compile/fail/ref=EnumAsIdentifier5.out -XDrawDiagnostics -source 1.5 EnumAsIdentifier.java
aoqi@0 8 * @compile/fail/ref=EnumAsIdentifier.out -XDrawDiagnostics EnumAsIdentifier.java
aoqi@0 9 */
aoqi@0 10
aoqi@0 11 public class EnumAsIdentifier {
aoqi@0 12
aoqi@0 13 int enum = 0;
aoqi@0 14
aoqi@0 15 }
aoqi@0 16

mercurial