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

8 lines
117 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
val b = 1 == <caret>with ("") {
println()
1
}
}