langtools/test/tools/javac/enum/T6509042.java
author ohair
Tue, 25 May 2010 15:54:51 -0700
changeset 5520 86e4b9a9da40
parent 325 44df0e9643b4
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
325
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 325
diff changeset
     2
 * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
325
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     4
 *
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     7
 * published by the Free Software Foundation.
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     8
 *
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    13
 * accompanied this code).
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    14
 *
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 325
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 325
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 325
diff changeset
    21
 * questions.
325
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    22
 */
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    23
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    24
/*
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    25
 * @test
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    26
 * @bug 6509042
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    27
 *
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    28
 * @summary javac rejects class literals in enum constructors
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    29
 * @author Maurizio Cimadamore
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    30
 *
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    31
 * @compile T6509042.java
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    32
 */
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    33
enum T6509042 {
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    34
     A, B;
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    35
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    36
     Class<T6509042> cl = T6509042.class;
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    37
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    38
     T6509042() {
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    39
         Class<T6509042> cl2 = T6509042.class;
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    40
     }
44df0e9643b4 6509042: javac rejects class literals in enum constructors
mcimadamore
parents:
diff changeset
    41
}