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

8 lines
107 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
<caret>with ("") {
with ("a") {
this
}
}
}