mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
151 B
Kotlin
Vendored
12 lines
151 B
Kotlin
Vendored
class My {
|
|
|
|
val x: Int
|
|
get() = 1
|
|
|
|
init {
|
|
// x has no backing field, so the call is safe
|
|
foo()
|
|
}
|
|
|
|
fun foo() {}
|
|
} |