-
-
Notifications
You must be signed in to change notification settings - Fork 836
4.7.137 regression #469
Copy link
Copy link
Closed
Labels
Description
After upgrading to Moq 4.7.137 the following scenario breaks:
public void Main()
{
new Mock<IBreak>().Object;
}
public interface IBreak
{
void DoStuff<T>(Implementation1<T> a);
void DoStuff<T>(Implementation2<T> a);
}
public abstract class BaseType<T>
{
}
public class Implementation1<T> : BaseType<T>
{
}
public class Implementation2<T> : BaseType<T>
{
}Reactions are currently unavailable