Files
kotlin-fork/idea/testData/slicer/outflow/abstractMethodParameter2.kt
T
2020-04-18 01:24:51 +03:00

16 lines
173 B
Kotlin
Vendored

// FLOW: OUT
interface I {
fun foo(p: Any)
}
class C : I {
override fun foo(p: Any) {
println(p)
}
}
fun bar(i: I, s: String) {
i.foo(<caret>s)
}