97df0a0902
now it should work for non-source declarations
9 lines
93 B
Kotlin
Vendored
9 lines
93 B
Kotlin
Vendored
interface A {
|
|
fun <T>foo()
|
|
}
|
|
|
|
interface B {
|
|
fun <T>foo() {}
|
|
}
|
|
|
|
>class Y<caret> : A, B |