Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/kt4126.fir.kt
T

4 lines
174 B
Kotlin
Vendored

public data class ProductGroup(val short_name: String, val parent: ProductGroup?) {
val name: String = if (parent == null) short_name else "${parent.name} $short_name"
}