Support callable references in "explicit this" inspection

So #KT-21510 Fixed
This commit is contained in:
Kirill
2017-12-17 20:02:36 +03:00
committed by Mikhail Glukhikh
parent d3adf57145
commit 74e5a9425a
6 changed files with 66 additions and 13 deletions
@@ -0,0 +1,7 @@
class Foo {
fun s() = ""
fun test() {
<caret>this::s
}
}