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

14 lines
171 B
Kotlin
Vendored

// WITH_RUNTIME
class Foo {
fun foo(i: Int) {}
}
fun bar(i: Int, f: Foo) {}
fun test(f: Foo) {
val f2 = Foo()
f.foo(1)<caret>
bar(2, f)
bar(3, f2)
}