Call Hierarchy: Show Kotlin usages of Java methods

#KT-12398 Fixed
This commit is contained in:
Alexey Sedunov
2016-09-30 21:00:51 +03:00
parent 5bb035282f
commit 3f6e60fb51
12 changed files with 133 additions and 23 deletions
@@ -0,0 +1,11 @@
class A {
val x = J().foo()
init {
J().foo()
}
}
val y = J().foo()
fun test(j: J) = j.foo()