mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
* KT-21213 multiline kdoc - intellij joins lines together without space * Use \n directly as a line separator #KT-21213 * Remove unused import #KT-21213
16 lines
451 B
Kotlin
Vendored
16 lines
451 B
Kotlin
Vendored
/**
|
|
* Some documentation
|
|
* on two lines.
|
|
*
|
|
* @param test String
|
|
* on two lines
|
|
*/
|
|
fun testMethod(test: String) {
|
|
}
|
|
|
|
fun test() {
|
|
<caret>testMethod("")
|
|
}
|
|
|
|
//INFO: <pre><b>public</b> <b>fun</b> testMethod(test: String): Unit <i>defined in</i> root package <i>in file</i> OnMethodUsageWithMultilineParam.kt</pre><p>Some documentation on two lines.</p>
|
|
//INFO: <dl><dt><b>Parameters:</b></dt><dd><code>test</code> - String on two lines</dd></dl> |