/** * Some documentation * on two lines. * * @param test String * on two lines */ fun testMethod(test: String) { } fun test() { testMethod("") } //INFO:
OnMethodUsageWithMultilineParam.kt
public fun testMethod( //INFO: test: String //INFO: ): Unit

Some documentation on two lines.

Params:

test - String on two lines