Files
kotlin/compiler/testData/loadJava/compiledKotlin/visibility/PrivateToThis.kt
2014-12-08 18:24:30 +03:00

15 lines
279 B
Kotlin

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!!
}