Do not report "redundant arrow" with parameters without expected type

#KT-29049 Fixed
Part of KT-29005
This commit is contained in:
Mikhail Glukhikh
2018-12-27 14:16:36 +03:00
parent ebd6caaa71
commit cdef811c55
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,5 @@
// PROBLEM: none
fun foo(x: Int) = x
val x = { it: Int <caret>-> foo(it) }