mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
192 B
Kotlin
Vendored
15 lines
192 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
|
|
}
|