mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
13 lines
324 B
Java
13 lines
324 B
Java
class Super {
|
|
void <TYPO descr="Typo: In word 'asdftypo'">asdftypo</TYPO>() {}
|
|
|
|
WithTyppoInName myWithTyppoInName = new WithTyppoInName();
|
|
}
|
|
|
|
class Sub extends Super {
|
|
void asdftypo() {}
|
|
}
|
|
|
|
class With<TYPO descr="Typo: In word 'Typpo'">Typpo</TYPO>InName {}
|
|
|
|
class InheritorOfWithTyppoInName extends WithTyppoInName {} |