0ff9982b31
When a call is resolved to a classifier, only a single error message was being used for multiple cases. This lead to confusion as the default message may not be applicable to a given error case. Added additional errors and messages to distinguish between these error cases. #KT-57251 Fixed
7 lines
138 B
Kotlin
Vendored
7 lines
138 B
Kotlin
Vendored
interface MutableMatrix<T> {
|
|
}
|
|
|
|
fun <T> toMutableMatrix(): MutableMatrix<T> {
|
|
return <!INTERFACE_AS_FUNCTION!>MutableMatrix<!><T>()
|
|
}
|