Files
openide/java/java-tests/testData/codeInsight/overrideImplement/afterMarkdownComment.java
Mathias 839d31254e [javadoc] IDEA-370761 IDEA-377509 IDEA-378914 Add test to avoid regressions
For a reason that I did not investigate, the issue doesn't manifest on the master branch. It does on the release version (2025.2) though, so this test should act as a safeguard.

GitOrigin-RevId: 5cdc932f15d444af6fe40cf2781dcce66f4e27ac
2025-10-29 21:44:44 +00:00

14 lines
386 B
Java

public interface GenericInterfaceWithMarkdown<A> {
/// For some reason, markdown comments break
/// generated implementation in the current release (2025.2)
/// but not on master, so here's a test
A functionWithMarkdown();
}
class DefaultImpl implements GenericInterfaceWithMarkdown<String> {
@Override
public String functionWithMarkdown() {
return "";
}
}