Kapt: Fix star indentation in stub Javadoc (KT-30163)

This commit is contained in:
Yan Zhulanow
2019-03-18 15:43:53 +03:00
parent e4d758b614
commit c7678a27e5
7 changed files with 151 additions and 12 deletions
@@ -0,0 +1,35 @@
package javadoc
/** Simple */
class A
/**
* Multi
* line
* comment.
*/
class B {
/** Nested
* member
* comment. */
val a = ""
/**
* Mixed
* tabs/spaces
*/
val b = ""
/**
* List:
* * first item
* * second item
*/
val c = ""
/**
Without
stars
*/
val d = ""
}