2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2015-05-15 08:56:14 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6404756
|
|
|
|
* @summary javac mishandles deprecation warnings on some elements marked deprecated
|
2015-05-15 08:56:14 +00:00
|
|
|
* @compile/fail/ref=T6404756.out -XDrawDiagnostics -Werror -Xlint:deprecation T6404756.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class T6404756 {
|
|
|
|
public void foo(Foo f) {
|
|
|
|
@Deprecated String s1 = f.foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class Foo {
|
|
|
|
@Deprecated String foo;
|
|
|
|
}
|