mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
14 lines
222 B
Kotlin
Vendored
14 lines
222 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
class ClassVal() {
|
|
val property1 = 1
|
|
|
|
internal val property2 = 1
|
|
|
|
private val property3 = Object()
|
|
|
|
protected val property4: String = ""
|
|
|
|
public val property5: Int = 1
|
|
} |