Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
varInInitializer.fir.kt
blob: 9db530e626643ecd75660fca0b9d2316a2a96acb [
file
]
class
My
{
val x
:
Int
init
{
var
y
:
Int
?
=
null
if
(
y
!=
null
)
{
x
=
y
.
hashCode
()
}
else
{
x
=
0
}
}
}