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