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

11 lines
105 B
Plaintext
Vendored

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