rspec/rules/S2123/rule.adoc

33 lines
381 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:48:07 +02:00
include::description.adoc[]
=== Noncompliant code example
[source,text]
----
public int pickNumber() {
int i = 0;
int j = 0;
i = i++; // Noncompliant; i is still zero
return j++; // Noncompliant; 0 returned
}
----
=== Compliant solution
[source,text]
----
public int pickNumber() {
int i = 0;
int j = 0;
i++;
return ++j;
}
----
2020-06-30 12:48:07 +02:00