Files
kotlin-fork/idea/testData/intentions/convertToScope/convertToWith/callExpression2.kt
T
2019-02-01 12:13:05 +03:00

13 lines
161 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
class Foo {
fun foo(i: Int) {}
}
fun bar(i: Int, f: Foo) {}
fun test(f: Foo) {
f.foo(1)
bar(2, f)<caret>
}