6 lines
126 B
Kotlin
Vendored
6 lines
126 B
Kotlin
Vendored
import java.util.Collections
|
|
|
|
fun <T> checkSubtype(t: T) = t
|
|
|
|
val ab = checkSubtype<List<Int>?>(Collections.emptyList<Int>())
|