6 lines
107 B
Plaintext
Vendored
6 lines
107 B
Plaintext
Vendored
// "Add 'kotlin.Any' as upper bound for E" "true"
|
|
|
|
fun <T : Any> foo() = 1
|
|
|
|
fun <E : Any> bar() = foo<E>()
|