langtools/test/tools/javac/depDocComment/DeprecatedDocComment4.java
author sogoel
Fri, 05 Sep 2014 16:43:00 -0700
changeset 26528 a1a7ad15183e
parent 10948 063463f6535f
permissions -rw-r--r--
8055075: Group 9b: golden files for tests in tools/javac dir Reviewed-by: jjg

/**
 * @test  /nodynamiccopyright/
 * @bug 7104201
 * @summary Refactor DocCommentScanner
 * @compile/fail/ref=DeprecatedDocComment4.out -XDrawDiagnostics -Werror -Xlint:dep-ann DeprecatedDocComment4.java
 */

class DeprecatedDocComment4 {
    /** @deprecated **/
    /* block */
    void test1() {};

    /** @deprecated **/
    /** double javadoc */
    void test2() {};

    /** @deprecated **/
    //line comment
    void test3() {};
}