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

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