Fix for KT-13699 Quick documentation doesn't show supertype docs for overridden Java

This commit is contained in:
Simon Ogorodnik
2016-11-15 16:50:11 +03:00
parent b93c37faa2
commit 1c75c02dfe
6 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
interface OverrideMe {
/**
* Some comment
*/
void overrideMe();
}