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