darcy@530: /* ohair@554: * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. darcy@530: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. darcy@530: * darcy@530: * This code is free software; you can redistribute it and/or modify it darcy@530: * under the terms of the GNU General Public License version 2 only, as darcy@530: * published by the Free Software Foundation. darcy@530: * darcy@530: * This code is distributed in the hope that it will be useful, but WITHOUT darcy@530: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or darcy@530: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License darcy@530: * version 2 for more details (a copy is included in the LICENSE file that darcy@530: * accompanied this code). darcy@530: * darcy@530: * You should have received a copy of the GNU General Public License version darcy@530: * 2 along with this work; if not, write to the Free Software Foundation, darcy@530: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. darcy@530: * ohair@554: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: * or visit www.oracle.com if you need additional information or have any ohair@554: * questions. darcy@530: */ darcy@530: darcy@530: /* darcy@530: * @test darcy@530: * @bug 6937417 darcy@530: * @summary Test -Xprint on enum type with no constants darcy@530: * @author Joseph D. Darcy darcy@530: * @compile -Xprint VacuousEnum.java darcy@530: */ darcy@530: public enum VacuousEnum { darcy@530: // But alas, no enum constants! darcy@530: }