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

Key: RSRP-25201
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Blocker Blocker
Assignee: Eugene Pasynkov
Reporter: Carsten Jendro
Votes: 0
Watchers: 0
Operations

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

Invalid "type cast is redundant" message

Created: 06 Aug 06 17:26   Updated: 09 Sep 06 13:33
Component/s: None
Fix Version/s: 2.0.1
Security Level: Everybody (All jira users)

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

Build: 241
Fixed in build: 250
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=25201


 Description  « Hide
class A : ITest
	{
		public void Test()
		{
			Console.WriteLine("A");
		}
	}

	class C : A, ITest
	{
		public new void Test()
		{
			Console.WriteLine("C");
		}
	}

	class Class1
	{
		[STAThread]
		private static void Main(string[] args)
		{
			ITest c = new C();
			((A)c).Test();
			c.Test();
		}
	}


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