3789983e89
Reviewed-by: darcy, ihse
13 lines
265 B
Java
13 lines
265 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4903501
|
|
* @summary Please add annotation <at>Deprecated to supplant the javadoc tag
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=Dep.out -XDrawDiagnostics -Xlint:dep-ann -Werror Dep.java
|
|
*/
|
|
|
|
/** @deprecated */
|
|
class Dep {
|
|
}
|