08bc0a6bd0
^KT-61564
9 lines
143 B
Kotlin
Vendored
9 lines
143 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlin.reflect.*
|
|
|
|
@OptIn(kotlin.ExperimentalStdlibApi::class)
|
|
fun <T : Comparable<T>> foo() {
|
|
typeOf<List<T>>()
|
|
}
|
|
|