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

7 lines
154 B
Kotlin
Vendored

class ReadByAnotherPropertyInitializer() {
val a = 1
init {
val <!UNUSED_VARIABLE!>x<!> = <!BACKING_FIELD_USAGE_DEPRECATED!>$a<!>
}
}