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

12 lines
145 B
Kotlin
Vendored

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