ec55dddfcd
KT-462 Consider allowing initializing properties via property names when it is safe KT-598 Allow to use backing fields after this expression
6 lines
128 B
Plaintext
6 lines
128 B
Plaintext
class CustomValNoBackingField() {
|
|
val a: Int
|
|
get() = 1
|
|
|
|
val b = <!NO_BACKING_FIELD_CUSTOM_ACCESSORS!>$a<!>
|
|
} |