Unnecessary parentheses in function call with lambda: don't report for function named 'suspend'

#KT-22878 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-27 18:16:25 +09:00
committed by Yan Zhulanow
parent 777995a3a0
commit 581f83421a
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
fun suspend(body: () -> Int) {}
fun main() {
val wInvokeCall = suspend()<caret> { 42 }
}