Files
kotlin-fork/compiler/testData/diagnostics/tests/properties/backingField/trivialExplicitBackingFIeld.kt
T
2021-09-11 22:05:43 +03:00

5 lines
136 B
Kotlin
Vendored

class A {
<!MUST_BE_INITIALIZED_OR_BE_ABSTRACT!>val number: Number<!>
<!EXPLICIT_BACKING_FIELDS_UNSUPPORTED!>field = 1<!>
}