mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
216 B
Kotlin
Vendored
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 }()
|
|
}
|