[Mono-bugs] [Bug 424715] New: [Flow-analysis] on method arguments

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Sep 9 06:40:00 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=424715


           Summary: [Flow-analysis] on method arguments
           Product: Mono: Compilers
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: C#
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: msafar at novell.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


class C
{
        static void Main ()
        {
                int a;
                Foo(out a, a);
        }

        static void Foo (out int a, int b)
        {
                a = b;
        }
}

Expected:  error CS0165: Use of unassigned local variable `a'


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list