[Mono-bugs] [Bug 422535] New: Missing CS0535 for property accessors

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Sep 3 08:48:21 EDT 2008


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


           Summary: Missing CS0535 for property accessors
           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: ---


// CS0535: `C' does not implement interface member `IA.P.set'
// Line: 16

interface IA
{
        int P { set; }
}

class A : IA
{
        int IA.P {
                set { }
        }
}

class C : A, IA
{
        public int P {
                get { return 0; }
        }
}


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