Files
kotlin-fork/idea/testData/intentions/convertToScope/convertToWith/singleCall.kt.after
T
2019-02-19 10:41:20 +03:00

12 lines
111 B
Plaintext
Vendored

// WITH_RUNTIME
class C {
fun foo() {}
}
fun test() {
val c = C()
with(c) {
foo()
}
}