Add serialization for PRIVATE_TO_THIS

This commit is contained in:
Stanislav Erokhin
2014-11-20 17:06:16 +03:00
parent fc8cec9509
commit f640f82ed0
9 changed files with 80 additions and 14 deletions
@@ -0,0 +1,15 @@
package test
class A<in I> {
private val foo: I = null!!
private var bar: I = null!!
private val val_with_accessors: I
get() = null!!
private var var_with_accessors: I
get() = null!!
set(value: I) {}
private fun bas(): I = null!!
}