aa4d6a4ea7
#KT-1183 In Progress
12 lines
210 B
Kotlin
12 lines
210 B
Kotlin
class A {
|
|
fun test() {
|
|
::foo : KExtensionProperty<A, String>
|
|
::bar : KMutableExtensionProperty<A, Int>
|
|
}
|
|
}
|
|
|
|
val A.foo: String get() = ""
|
|
var A.bar: Int
|
|
get() = 42
|
|
set(value) { }
|