1/*
2 * @test /nodynamiccopyright/
3 * @bug 4903501
4 * @summary Please add annotation <at>Deprecated to supplant the javadoc tag
5 * @author gafter
6 *
7 * @compile/fail/ref=Dep.out -XDrawDiagnostics  -Xlint:dep-ann -Werror Dep.java
8 */
9
10/** @deprecated */
11class Dep {
12}
13