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

Key: RSRP-43261
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Normal Normal
Assignee: Sergey Shkredov
Reporter: Ilya Ryzhenkov
Votes: 0
Watchers: 0
Operations

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

Safe delete type parameter doesn't update overriden members

Created: 14 Jun 07 16:59   Updated: 15 May 08 17:18
Component/s: Refactorings - Safe Delete
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

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

Fixed in build: 801


 All   Comments   Work Log   Change History      Sort Order:
Ilya Ryzhenkov - 24 Oct 07 14:32
class Foo
  {
    public virtual void Bar<T>() // safe delete T here
    {
    }
  }
  class Foo2 : Foo
  {
    public override void Bar<T>()
    {
    }
  }