Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
checkInnerLocalDeclarations.kt
blob: 422e57181f67afbdf860e7ad5ea2641ba26efbe4 [
file
]
package
c
fun test
()
{
val x
=
10
fun inner1
()
{
fun inner2
()
{
fun inner3
()
{
val
<!
UNUSED_VARIABLE
!>
y
<!>
=
x
}
}
}
}