Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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
}
}
}
}