mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
10 lines
181 B
Kotlin
Vendored
10 lines
181 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
class A {
|
|
val a: Int = { 3 }()
|
|
val c: Int = { 3 }()
|
|
val Int.a: Int get() = 3
|
|
val Int.b: Int get() = 4
|
|
val Int.c: Int get() = 4
|
|
} |