Files
kotlin-fork/compiler/fir/analysis-tests/testData/extendedCheckers/canBeReplacedWithOperatorAssignment/nonRepeatingAssignment.kt
T
2020-08-27 16:07:04 +03:00

7 lines
131 B
Kotlin
Vendored

fun foo() {
var <!VARIABLE_NEVER_READ!>x<!> = 0
val y = 0
val z = 0
<!ASSIGNED_VALUE_IS_NEVER_READ!>x<!> = y + z
}