9127788f4a
(cherry picked from commit 461c29d)
14 lines
340 B
Kotlin
Vendored
14 lines
340 B
Kotlin
Vendored
abstract class Base<A> {
|
|
fun baseF(): A = null!!
|
|
}
|
|
|
|
@Deprecated("")
|
|
class Test<T> : Base<Int>() {
|
|
fun a(): String = ""
|
|
fun b(i: String, b: CharSequence) {}
|
|
fun c(): Int = 5
|
|
fun d(): T = null!!
|
|
fun <D : Any> e(item: D): D = item
|
|
fun f(items: List<Map<String, Int>>, i: Int) {}
|
|
fun <D : String> g(item: D) {}
|
|
} |