Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/NoInferenceFromDeclaredBounds.kt
T
Svetlana Isakova 3739301566 TYPE_INFERENCE_FAILED changed in tests
to concrete type inference error
2012-07-20 19:34:52 +04:00

9 lines
148 B
Kotlin

fun fooT22<T>() : T? {
return null
}
fun foo1() {
<!TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>fooT22<!>()
}
val n : Nothing = null.sure()