220141ab2b
(cherry picked from commit b620099)
7 lines
156 B
Plaintext
Vendored
7 lines
156 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class Wrapper<T>(private val x: T) {
|
|
fun unwrap() = x
|
|
}
|
|
|
|
val unwrapped = listOf(Wrapper(1), Wrapper("B")).map(Wrapper<out Any>::unwrap) |