9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
[source,vbnet]
|
|
----
|
|
Public Sub Method()
|
|
Dim o As Object = Nothing
|
|
If False Then
|
|
o.ToString() ' Compliant: code is unreachable
|
|
End If
|
|
End Sub
|
|
---- |