Files
kotlin-fork/idea/testData/inspectionsLocal/redundantWith/notApplicable_inValueArgument.kt
T
2018-08-02 09:23:27 +03:00

10 lines
128 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun foo(i: Int) {}
fun test() {
foo(<caret>with("") {
println()
1
})
}