[Mono-bugs] [Bug 436792] New: Two setters on a property gives internal compiler error instead of giving CS1007 .

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Sun Oct 19 14:05:26 EDT 2008


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: mono-bugs at lists.ximian.com
        ReportedBy: cedricv at neonux.com
         QAContact: mono-bugs at lists.ximian.com
          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.


More information about the mono-bugs mailing list