summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/resources/inlayProviders/kotlin.references.types.hints/hints.type.variable.kt
blob: 17a58bae4fffadb6c83a180f6a7a58072c7b1001 (plain)
1
2
3
4
5
6
7
8
9
fun test() {
    val list = listOf(81.0)
}

class List<T> {
    fun sum() : Int = TODO()
}

fun <T> listOf(vararg elements: T): List<T> = TODO()