[Mono-bugs] [Bug 358848] New: gmcs does not resolve simple name and type name conflicts correctly

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Feb 5 09:21:14 EST 2008


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


           Summary: gmcs does not resolve simple name and type name
                    conflicts correctly
           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: ---


using Base = System.Drawing.Color;

class Color
{
        protected Base Base
        {
                get { return Base.Blue; }
        }

        protected Base NewBase {
                get {
                        return Base.FromArgb(1, 2, 3, 4);
                }
        }

        public static void Main ()
        {
        }
}


Expected: No errors.


-- 
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