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

5 lines
114 B
Kotlin
Vendored

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