Don't show type for reference expressions inside KtCallableReference (KT-14530)

This commit is contained in:
Dmitry Jemerov
2016-10-27 13:25:47 +02:00
parent 4f82958309
commit e6c05c3a19
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,9 @@
fun foo() {
}
fun bar() {
run(::<caret>foo)
}
// TYPE: ::foo -> <html>KFunction0&lt;Unit&gt;</html>
// TYPE: run(::foo) -> <html>Unit</html>