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