KT-9970 Regression: completion doesn't see private extension functions with parametrized receiver

#KT-9970 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-11-12 14:05:01 +03:00
parent 6a26e2fd82
commit 5b668cb6a6
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,7 @@
class Z<T> {
fun f(): Z<T> = ext<caret>
}
private fun <T> Z<T>.extFun() = Z<T>()
// EXIST: "extFun"