Files
kotlin-fork/idea/testData/intentions/convertToScope/convertToApply/binaryExpression5.kt
T
2019-03-18 11:18:23 +03:00

11 lines
125 B
Kotlin
Vendored

// IS_APPLICABLE: false
class A {
fun foo() {}
}
fun test() {
val a = A()
a.foo()
<caret>1 + 1
a.foo()
}