jdk-24/test/langtools/tools/javac/warnings/DepAnn.java

62 lines
1.1 KiB
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4986256
* @compile/ref=DepAnn.out -XDrawDiagnostics -Xlint:all,-dangling-doc-comments DepAnn.java
2007-12-01 00:00:00 +00:00
*/
// control: this class should generate warnings
/** @deprecated */
class DepAnn
{
/** @deprecated */
void m1(int i) {
}
}
// tests: the warnings that would otherwise be generated should all be suppressed
@SuppressWarnings("dep-ann")
/** @deprecated */
class DepAnn1
{
/** @deprecated */
void m1(int i) {
/** @deprecated */
int x = 3;
}
}
class DepAnn2
{
@SuppressWarnings("dep-ann")
/** @deprecated */
class Bar {
/** @deprecated */
void m1(int i) {
}
}
@SuppressWarnings("dep-ann")
/** @deprecated */
void m2(int i) {
}
@SuppressWarnings("dep-ann")
static int x = new DepAnn2() {
/** @deprecated */
int m1(int i) {
return 0;
}
}.m1(0);
}
// this class should produce warnings because @SuppressWarnings should not be inherited
/** @deprecated */
class DepAnn3 extends DepAnn1
{
/** @deprecated */
void m1(int i) {
}
}