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

12 lines
109 B
Plaintext
Vendored

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