History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-49306
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Normal Normal
Assignee: Eugene Pasynkov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
ReSharper

error CS0165: Use of unassigned local variable 'z'

Created: 15 Sep 07 18:46   Updated: 17 Oct 07 13:26
Component/s: Code Analysis
Fix Version/s: 3.1
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 521
Fixed in build: 544


 Description  « Hide
class Stuff
{
	static void Bar()
	{
		int z;
                new Foo(out z, z); // error CS0165: Use of unassigned local variable 'z'
	}
}


class Foo
{
    public Foo(out int y, int x)
    {
        y = 1;
    }
}

Related to RSRP-33871



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.