Files
kotlin-fork/compiler/testData/diagnostics/tests/backingField/FieldAsParam.kt
T
2018-05-04 18:04:57 +03:00

8 lines
186 B
Kotlin
Vendored

var y: Int = 1
// No backing field!
<!MUST_BE_INITIALIZED!>var x: Int<!>
get() = y
set(<!ACCESSOR_PARAMETER_NAME_SHADOWING, UNUSED_PARAMETER!>field<!>) {
y = field
}