mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
16 lines
298 B
Kotlin
Vendored
16 lines
298 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
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!!
|
|
} |