Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSemicolon/beforeKDocAndLambda.kt
T
2018-03-23 09:35:34 +03:00

11 lines
147 B
Kotlin
Vendored

// PROBLEM: none
fun test() {
foo()<caret>;
/**
* kdoc
*/
{ i: Int -> }.doIt()
}
fun foo() {}
fun ((Int) -> Unit).doIt() {}