Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
kt4126.kt
blob: 9e1db48a512b3dadf9711f28ec1e5d59263b7f73 [
file
]
public
data
class
ProductGroup
(
val short_name
:
String
,
val parent
:
ProductGroup
?)
{
val name
:
String
=
if
(
parent
==
null
)
short_name
else
"${<!DEBUG_INFO_SMARTCAST!>parent<!>.name} $short_name"
}