Comments
Sort by recent activity
One more bug: // Expected:
// [DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
// Actual:
// [DebuggerTypeProxy(typeof(NestedClass<>))]
[DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
public class NonGenericNestedClassBug<T>
{
// Expected:
// public NestedClass TestMethod()
// {
// return new NestedClass();
// }
// Actual:
// public NestedClass<T> TestMethod()
// {
// return new NestedClass<T>();
// }
public NestedClass TestMethod()
{
return new NestedClass();
}
public class NestedClass
{
}
}
/ comments
One more bug:// Expected:
// [DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
// Actual:
// [DebuggerTypeProxy(typeof(Neste...