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

7 lines
101 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
<caret>with ("") {
println("1")
println("2")
}
}