Override/Implement: Implement JavaDoc/KDoc copying

#KT-8682 Fixed
 #KT-12735 Fixed
(cherry picked from commit f4486be)
This commit is contained in:
Alexey Sedunov
2016-06-20 14:41:00 +03:00
parent 3f09b7f9d5
commit ffe4e760d7
15 changed files with 112 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
// COPY_DOC
abstract class A {
/**
* @see TEST
*/
abstract fun foo()
}
class B : A() {
<caret>
}