97df0a0902
now it should work for non-source declarations
7 lines
129 B
Kotlin
Vendored
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> {} |