mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 12:09:14 +00:00
21 lines
387 B
Java
21 lines
387 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6229758
|
|
* @summary deprecatedNOT! is
|
|
* @author Peter von der Ahé
|
|
* @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();
|
|
}
|
|
}
|