Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/regressions/kt832.kt
T
Svetlana Isakova b5229b8b3d tests for type inference tasks added
#KT-742 fixed
 #KT-832 fixed
 #KT-943 fixed
2012-08-01 17:03:53 +04:00

9 lines
186 B
Kotlin

package a
fun fooT2<T>() : (t : T) -> T {
return {it}
}
fun test() {
<!TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>fooT2<!>()(1) // here 1 should not be marked with an error
}