/**
* @test /nodynamiccopyright/
* @bug 6594914
* @summary \\@SuppressWarnings("deprecation") does not not work for the type of a variable
* @compile/ref=T6594914a.out -XDrawDiagnostics -Xlint:deprecation T6594914a.java
*/
class T6747671a {
@SuppressWarnings("deprecation")
@SuppressWarnings("deprecation")
throws DeprecatedClass { return null; }
void test() {
@SuppressWarnings("deprecation")
}
}