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

Some documentation on two lines.

//INFO:
Parameters:
test - String on two lines