Files
kotlin-fork/compiler/testData/diagnostics/tests/backingField/FieldInInterface.fir.kt
T
2020-12-04 16:58:30 +03:00

5 lines
98 B
Kotlin
Vendored

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