Files
kotlin/compiler/testData/loadJava/compiledKotlin/visibility/PrivateToThis.kt
Stanislav Erokhin 42857992ed Minor. Add ALLOW_AST_ACCESS to two tests.
We suppose, that AST access is allowed if we have property with initializer.
2016-06-09 12:57:47 +03:00

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