Files
kotlin-fork/compiler/testData/diagnostics/tests/backingField/ReadInAnotherPropertyIntializer.kt
T

5 lines
111 B
Kotlin
Vendored

class ReadByAnotherPropertyInitializer() {
val a = 1
val b = <!BACKING_FIELD_USAGE_DEPRECATED!>$a<!>
}