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

9 lines
143 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_EXPRESSION
val i: Int = 10
get() {
::<!UNSUPPORTED!>field<!>
return field
}