langtools/test/tools/doclint/tool/AAA.java
author jjg
Tue, 22 Jan 2013 19:06:05 -0800
changeset 15381 db57b805bf55
permissions -rw-r--r--
8006728: temporarily workaround jtreg problems for doclint tests in othervm Reviewed-by: jjh
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15381
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     1
/*
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     4
 *
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     8
 *
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    13
 * accompanied this code).
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    14
 *
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    18
 *
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    21
 * questions.
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    22
 */
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    23
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    24
/**
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    25
 * @test
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    26
 * @bug 8006728
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    27
 * @summary temporarily workaround jtreg problems for doclint tests in othervm
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    28
 */
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    29
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    30
// dummy test/class to be compiled before other tests in this directory
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    31
// see JDK-8006730
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    32
public class AAA {
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    33
    public static void main(String... args) { }
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    34
}
db57b805bf55 8006728: temporarily workaround jtreg problems for doclint tests in othervm
jjg
parents:
diff changeset
    35