Files
kotlin-fork/compiler/testData/diagnostics/tests/backingField/FieldInInterface.kt
T
2021-02-10 12:29:34 +03:00

6 lines
148 B
Kotlin
Vendored

// FIR_IDENTICAL
interface My {
<!BACKING_FIELD_IN_INTERFACE!>val x: Int<!> = <!PROPERTY_INITIALIZER_IN_INTERFACE!>0<!>
get() = field
}