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

View File

@@ -0,0 +1,10 @@
package foo;
public class A {
/**
* @return TEST
*/
public int foo() {
return 1;
}
}