History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-31305
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Eugene Pasynkov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
ReSharper

Wrong error highlight for overriden method

Created: 07 Nov 06 13:46   Updated: 06 Jun 07 13:21
Component/s: Code Analysis
Fix Version/s: Mirabilie Futurum
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 300
Fixed in build: 453


 Description  « Hide
using System;

class A
{
    public virtual int get_X()
    {
        throw new NotImplementedException();
    }
}

class B : A
{
    public virtual int X
    {
        get
        {
            throw new NotImplementedException();
        }
    }
}

class C : B
{
    public override int get_X() // here
    {
        return base.get_X();
    }
}


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.