jdk-24/test/langtools/tools/javac/T4994049/DeprecatedYES.java
2017-09-12 19:03:39 +02:00

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();
}
}