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

7 lines
129 B
Kotlin
Vendored

abstract class X<T> {
fun <S> foo1(t: T): T = t
fun <Q> foo2(t: T) {}
fun <U> foo3() {}
}
class Y<caret> : X<Int> {}