Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Eugene Pasynkov 
Subsystem
Code Analysis 
Affected versions
Fixed in
Fixed in build
Next build 
Build
521
Fixed in build
544
  • Submitted by   Vladimir Reshetnikov
    2 years ago (15 Sep 2007 18:46)
  • Updated by Vladimir Reshetnikov
    12 months ago (04 Feb 2009 23:08)
  • Jira: RSRP-49306
    (history, comments)

RSRP-49306

error CS0165: Use of unassigned local variable 'z'

0
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

Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments