Make implicit this inspection work for lambda invocation #KT-22970 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-02-27 09:10:22 +03:00
committed by Mikhail Glukhikh
parent a87f652591
commit 733cb42ced
4 changed files with 17 additions and 2 deletions
@@ -0,0 +1,3 @@
fun CharSequence.foo(bar: CharSequence.() -> Unit){
<caret>this.bar()
}