blob: ec59558dcc78360160ef3399901342f11e8fad49 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6229758
* @summary deprecatedNOT! is
* @author Peter von der Ah\u00e9
* @compile -Xlint:deprecation DeprecatedYES.java
* @compile/fail/ref=DeprecatedYES.out -XDrawDiagnostics -Werror -Xlint:deprecation DeprecatedYES.java
*/
class A {
/**@deprecated*/
void foo() {
}
}
class B {
void bar(A a) {
a.foo();
}
}