Remove explicit type specification: do not suggest for suspend function type

#KT-38310 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-04-17 09:32:04 +09:00
committed by Yan Zhulanow
parent 098469eb85
commit 329f0227ec
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,5 @@
// IS_APPLICABLE: false
fun test() {
val x: suspend (x: Int, y: Int) -> Unit<caret> = { x: Int, y: Int ->
}
}