6 lines
180 B
Plaintext
6 lines
180 B
Plaintext
[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
|
|
---- |