mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-16 11:31:20 +07:00
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
14 lines
386 B
Java
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 "";
|
|
}
|
|
} |