rspec/rules/S2252/vbnet/noncompliant-code.adoc

6 lines
180 B
Plaintext
Raw Permalink Normal View History

2023-07-03 14:45:25 +02:00
[source,vbnet,diff-id=1,diff-type=noncompliant]
----
For i As Integer = 0 To 0 Step 1 ' Noncompliant: the condition is always false, the loop will never execute
' ...
Next
----