3789983e89
Reviewed-by: darcy, ihse
21 lines
391 B
Java
21 lines
391 B
Java
/*
|
|
* @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();
|
|
}
|
|
}
|