Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
kt3587.kt
blob: 3e1d47b1cd9ce08032905595f2af0de6a1492831 [
file
]
open
class
Variable
{
val lightVar
:
LightVariable
=
if
(
this
is
LightVariable
)
this
else
LightVariable
()
}
class
LightVariable
()
:
Variable
()
fun box
():
String
{
Variable
()
return
"OK"
}