// WITH_RUNTIME class Wrapper(private val x: T) { fun unwrap() = x } val unwrapped = listOf(Wrapper(1), Wrapper("B")).map(Wrapper::unwrap)