Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/noCandidates/kt2787.kt
T
2021-07-28 23:18:38 +03:00

7 lines
157 B
Kotlin
Vendored

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