Files
kotlin/compiler/testData/loadJava/compiledKotlin/visibility/PrivateClassMembers.kt
2018-07-24 10:52:16 +03:00

15 lines
216 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
public class PrivateClassMembers {
private val v = { 0 }()
private var r = { 0 }()
private set
private fun f() = { 0 }()
internal val internal = { 0 }()
}