Support callable references in "implicit this" inspection

Second part of #KT-21510
This commit is contained in:
Kirill
2017-12-17 23:38:50 +03:00
committed by Mikhail Glukhikh
parent 74e5a9425a
commit 7842fa4796
6 changed files with 70 additions and 5 deletions
@@ -0,0 +1,7 @@
class Foo {
fun s() = ""
fun test() {
<caret>::s
}
}