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

4 lines
82 B
Kotlin
Vendored

fun foo() {
var a = 0
<!ASSIGNED_VALUE_IS_NEVER_READ!>a<!> = (a + 1) / 2
}