More proper fix for KT-8137/EA-69470: avoiding failed assertion when searching usages of parameter of local class constructor

KT-8137 AE at JetSourceNavigationHelper.convertNamedClassOrObject() on function local class with several constructor parameters

 #KT-8137 fixed
 #EA-69470 fixed
This commit is contained in:
Evgeny Gerashchenko
2015-07-01 20:49:20 +03:00
parent 48a8f53551
commit aa65eb1055
9 changed files with 60 additions and 13 deletions
@@ -64,4 +64,9 @@ fun test() {
val tt = A.T()
t.bar(2)
val fff = A.T::bar
class LocalClass(val localClassProperty: Int) {
}
LocalClass(localClassProperty = 1).localClassProperty
}