Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/noCandidates/kt2787.kt
T

6 lines
140 B
Kotlin
Vendored

interface MutableMatrix<T> {
}
fun <T> toMutableMatrix(): MutableMatrix<T> {
return <!RESOLUTION_TO_CLASSIFIER!>MutableMatrix<!><T>()
}