Files
kotlin-fork/analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingFieldDecl.kt
T
2022-10-05 15:06:52 +00:00

4 lines
178 B
Kotlin
Vendored

class C {
val names: List<String> // clearly tells the type of the property upfront
<expr>field: MutableList<String> = mutableListOf()</expr>
}