Reporter | Alexander Shvedov (shvedov) |
---|---|
Created | Apr 6, 2012 2:44:54 AM |
Updated | Apr 6, 2012 5:09:56 AM |
Priority | Major |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | Code Analysis |
Affected versions | 7.0 Preview |
Fixed in build | No Fixed in build |
Module Module1 Sub Main() Dim x = 12 Foo(x) Foo(x) Console.WriteLine(x) End Sub Sub Foo(ByRef x As Integer) x = x + 1 End Sub End Module
Execute "Transform out parameters" refactoring on Foo sub, after refactoring you will get highlighting like this:
But highlightings will disappear after project build (looks like caches issue).