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

11 lines
107 B
Plaintext
Vendored

// WITH_RUNTIME
class C {
fun foo() {}
}
fun test() {
val c = C().also {
it.foo()
}
}