Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
checkInnerLocalDeclarations.fir.kt
blob: 1e5f0e60de9b5e73a0c284bf7a67700e1fcb50d2 [
file
]
package
c
fun test
()
{
val x
=
10
fun inner1
()
{
fun inner2
()
{
fun inner3
()
{
val y
=
x
}
}
}
}