mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
#IDEA-375516 Fixed GitOrigin-RevId: fcc5475be92335ed7cb4a0f7dc416eaffa27462d
19 lines
344 B
Java
19 lines
344 B
Java
import java.lang.Override
|
|
|
|
class MarkdownInheritDoc {
|
|
|
|
/** I am legacy javadoc, I hope no one disturbs my _underlines_ and **astrerisks** */
|
|
void foo() {}
|
|
}
|
|
|
|
class MarkdownInheritedDoc extends MarkdownInheritDoc {
|
|
|
|
/// Markdown variant
|
|
/// {@inheritDoc}
|
|
///
|
|
/// Single line markdown
|
|
@Override
|
|
void foo() {
|
|
super.foo();
|
|
}
|
|
} |