603bcaa039
#KT-10006 Fixed
11 lines
206 B
Kotlin
Vendored
11 lines
206 B
Kotlin
Vendored
interface I
|
|
|
|
fun I.foo(p: Int): Boolean = true
|
|
|
|
fun foo(o: Any?) {
|
|
if (o is I?) {
|
|
o?.foo(<caret>)
|
|
}
|
|
}
|
|
|
|
//Text: (<highlight>p: Int</highlight>), Disabled: false, Strikeout: false, Green: true |