2b83e3721a
#KT-38003 Fixed
16 lines
173 B
Kotlin
Vendored
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)
|
|
}
|