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