Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSemicolon/beforeCommentAndLambda.kt
T
2018-02-13 11:52:04 +03:00

9 lines
134 B
Kotlin
Vendored

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