Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
kt610.fir.kt
blob: 7a6a2782ec38af7ad367d24814b9a919deb14d1c [
file
]
//KT-610 Distinguish errors 'unused variable' and 'variable is assigned but never accessed'
package
kt610
fun foo
()
{
var
j
=
9
//'unused variable' error
var
i
=
1
//should be an error 'variable i is assigned but never accessed'
i
=
2
}