"Convert lambda to anonymous function": Don't suggest in inline function

So #KT-24792 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-06-07 07:06:17 +03:00
committed by Mikhail Glukhikh
parent fa58da85ee
commit 3292137acb
3 changed files with 14 additions and 0 deletions
@@ -0,0 +1,7 @@
// IS_APPLICABLE: false
inline fun test() {
foo <caret>{ "" }
}
fun foo(f: (Int) -> String) {}