KT-2303 Support loading private class members from bytecode

#KT-2303 obsolete
This commit is contained in:
Evgeny Gerashchenko
2014-06-11 18:55:15 +04:00
parent 2ec285735e
commit b65f6e1e0e
5 changed files with 42 additions and 0 deletions
@@ -0,0 +1,14 @@
//ALLOW_AST_ACCESS
package test
public class PrivateClassMembers {
private val v = 0
private var r = 0
private set
private fun f() = 0
internal val internal = 0
}