Evaluate expression: allow to call invisible members

#KT-4935 Fixed
This commit is contained in:
Natalia Ukhorskaya
2014-05-06 17:21:04 +04:00
parent 5237674139
commit a0549f0ff5
22 changed files with 194 additions and 12 deletions
@@ -0,0 +1,12 @@
fun foo() {
<caret>val a = 1
}
class MyClass {
protected fun protectedFun(): Int = 1
protected val protectedVal: Int = 1
protected class ProtectedClass {
val a = 1
}
}