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