rspec/rules/S2757/kotlin/code-example.adoc

9 lines
172 B
Plaintext
Raw Normal View History

[source,kotlin]
----
var target = -5
val num = 3
target =- num // Noncompliant: target = -3. Is that the expected behavior?
target =+ num // Noncompliant: target = 3
----