Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
initializationInLocalFun.kt
blob: c442d1a276717186c2782e542a9ac95146413dbf [
file
]
// FIR_IDENTICAL
fun foo
()
{
var
x
:
Int
fun bar
()
{
x
=
42
}
<!
UNINITIALIZED_VARIABLE
!>
x
<!>.
hashCode
()
bar
()
}