mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
12 lines
265 B
Java
12 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 {
|
|
}
|