Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
varChangedInLocalInitializer.fir.kt
blob: 73cb4c483283c2e1acfb50ea4957389247cc8cbd [
file
]
fun foo
()
{
class
My
{
val x
:
Int
init
{
var
y
:
Int
?
y
=
42
x
=
y
.
hashCode
()
}
}
}