Do not suggest removing empty parentheses if lambda is on the next line

So #KT-15195 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-05-08 15:37:39 +03:00
parent 6968540889
commit 5246c54dad
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,10 @@
// IS_APPLICABLE: false
fun foo(f: (Int) -> Unit) = f(4)
fun bar() {
foo()<caret>
{
}
}