Merge branch 'JDK-8354447' into JDK-8348611

This commit is contained in:
Archie L. Cobbs 2025-04-11 16:11:32 -05:00
commit f2bab529d2

View File

@ -45,4 +45,13 @@ public /** Misplaced: after mods. */ class DanglingDocCommentsClass /** Misplace
/** Good comment. */
int i = 0;
}
}
/** Dangling comment X */
/**
* The {@code @SuppressWarnings} annotation below retroactively
* silences the warning about "Dangling comment X".
*/
@SuppressWarnings("dangling-doc-comments")
public void m5() { }
}