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