9 lines
152 B
Kotlin
Vendored
9 lines
152 B
Kotlin
Vendored
interface Foo<T> {
|
|
fun foo()
|
|
}
|
|
|
|
interface Bar : Foo<String>
|
|
|
|
fun usage(bar: Bar) {
|
|
bar.<!DEBUG_INFO_CALLABLE_OWNER("Bar.foo in Bar")!>foo()<!>
|
|
} |