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


           Summary: Two setters on a property gives internal compiler error
                    instead of giving CS1007.
           Product: Mono: Compilers
           Version: SVN
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: Minor
          Priority: P5 - None
         Component: C#
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [email protected]
          Found By: ---


class DoubleAccessorImpact {

    //error CS1007: Property accessor already defined
    public bool BreakerGet {
        get { }
        get { }
    }

    //error CS8032: Internal compiler error during parsing, Run with -v for
details
    public bool Breaker {
        set { }
        set { }
    }
}


-- 
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.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to