Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/kt48935.kt
T

14 lines
363 B
Kotlin
Vendored

// FIR_IDENTICAL
// RENDER_DIAGNOSTICS_FULL_TEXT
interface Base
class DoesNotImplementBase
fun <T, V> exampleGenericFunction(func: V) where T: Base, V: (T) -> Unit {
}
fun main() {
val func: (DoesNotImplementBase) -> Unit = { }
exampleGenericFunction(func) // expected this to be a compilation error as the T: Base constraint should not be satisfied
}