FlagsTooEarly.java revision 139
286N/A/*
286N/A * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
286N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
286N/A *
286N/A * This code is free software; you can redistribute it and/or modify it
286N/A * under the terms of the GNU General Public License version 2 only, as
286N/A * published by the Free Software Foundation.
286N/A *
286N/A * This code is distributed in the hope that it will be useful, but WITHOUT
286N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
286N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
286N/A * version 2 for more details (a copy is included in the LICENSE file that
286N/A * accompanied this code).
286N/A *
286N/A * You should have received a copy of the GNU General Public License version
286N/A * 2 along with this work; if not, write to the Free Software Foundation,
286N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
286N/A *
286N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
286N/A * CA 95054 USA or visit www.sun.com if you need additional information or
286N/A * have any questions.
286N/A */
286N/A
286N/A/*
286N/A * @test
286N/A * @bug 4904495
286N/A * @summary Compilation may go awry if we ask a symbol for its flags during
286N/A * javac's Enter phase, before the flags are generally available.
286N/A */
286N/A
286N/Aimport com.sun.javadoc.*;
286N/A
286N/Apublic class FlagsTooEarly extends Doclet {
286N/A
286N/A public static void main(String[] args) {
286N/A String thisFile = "" +
286N/A new java.io.File(System.getProperty("test.src", "."),
286N/A "FlagsTooEarly.java");
286N/A
286N/A if (com.sun.tools.javadoc.Main.execute(
286N/A "javadoc",
286N/A "FlagsTooEarly",
286N/A FlagsTooEarly.class.getClassLoader(),
286N/A new String[] {"-Xwerror", thisFile}) != 0)
286N/A throw new Error("Javadoc encountered warnings or errors.");
286N/A }
286N/A
286N/A /*
286N/A * The world's simplest doclet.
286N/A */
286N/A public static boolean start(RootDoc root) {
286N/A return true;
286N/A }
286N/A
286N/A
286N/A /*
286N/A * The following sets up the scenario for triggering the (potential) bug.
286N/A */
286N/A C2 c;
286N/A static class C1 { }
286N/A static class C2 { }
286N/A}
286N/A