mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +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
11 lines
316 B
Java
11 lines
316 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> {
|
|
<caret>
|
|
} |