Files
kotlin-fork/idea/testData/decompiler/stubBuilder/PrivateToThis/PrivateToThis.kt
T
2014-12-22 16:05:15 +03:00

15 lines
288 B
Kotlin
Vendored

package p
class PrivateToThis<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!!
}