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

10 lines
96 B
Kotlin
Vendored

// WITH_RUNTIME
class C {
fun foo() {}
}
fun test() {
val c = C()
c.foo()<caret>
}