CFA: No more UNRESOLVED_CALL for object / enum entry qualifiers

(cherry picked from commit 4b09de8)
This commit is contained in:
Mikhail Glukhikh
2016-08-04 15:05:11 +03:00
committed by Mikhail Glukhikh
parent 962c2e5dd2
commit b7ed68db05
17 changed files with 504 additions and 30 deletions
@@ -0,0 +1,17 @@
import E.E1
object O {
val y = 1
}
enum class E(val x: Int) {
E1(0)
}
class C {
companion object {
val z = 2
}
}
fun foo() = E1.x + O.y + C.z