f945dce4c8
^KT-59791 In Progress
11 lines
274 B
Kotlin
Vendored
11 lines
274 B
Kotlin
Vendored
// !LANGUAGE: +NoAdditionalErrorsInK1DiagnosticReporter
|
|
// ISSUE: KT-55055
|
|
fun <T : Number> printGenericNumber(t: T) = println("Number is $t")
|
|
|
|
fun main() {
|
|
buildList { // inferred into MutableList<String>
|
|
add("Boom")
|
|
printGenericNumber(this[0])
|
|
}
|
|
}
|