jdk-24/test/langtools/tools/javac/warnings/DepAnn.java
Jonathan Gibbons a920af233a 8303689: javac -Xlint could/should report on "dangling" doc comments
Reviewed-by: vromero, ihse, prr
2024-04-26 19:47:06 +00:00

62 lines
1.1 KiB
Java

/*
* @test /nodynamiccopyright/
* @bug 4986256
* @compile/ref=DepAnn.out -XDrawDiagnostics -Xlint:all,-dangling-doc-comments DepAnn.java
*/
// 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) {
}
}