Files
Ilya Kirillov 97df0a0902 [Analysis API] rework containing declaration provider
now it should work for non-source declarations
2022-10-26 19:19:00 +00:00

9 lines
93 B
Kotlin
Vendored

interface A {
fun <T>foo()
}
interface B {
fun <T>foo() {}
}
>class Y<caret> : A, B