Files
kotlin-fork/compiler/testData/diagnostics/tests/override/derivedClasses/Instance.kt
T

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()<!>
}