My current non-compiling code is similar to this:

public abstract class A { }

public class B { }

public class C : A { }

public interface IFoo<T>
{
    void Handle(T item);
}

public class MyFoo<TA> : IFoo<TA>, IFoo<B>
    where TA : A
{
    public void Handle(TA a) { }
    public void Handle(B b) { }
}

The C# compiler refuses to compile this, citing the following rule/error:

'MyProject.MyFoo<TA>' cannot implement both 'MyProject.IFoo<TA>' and 'MyProject.IFoo<MyProject.B>' because they may unify for some type parameter substitutions

I understand what this error means; if TA could be anything at all then it could technically also be a B which would introduce ambiguity over the two different Handle implementations.

But TA can't be anything. Based on the type hierarchy, TA can't be a B - at least, I don't think it can. TA must derive from A, which does not derive from B, and obviously there's no multiple class inheritance in C#/.NET.

If I remove the generic parameter and replace TA with C, or even A, it compiles.

So why do I get this error? Is it a bug in or general un-intelligence of the compiler, or is there something else I'm missing?

Is there any workaround or am I just going to have to re-implement the MyFoo generic class as a separate non-generic class for every single possible TA derived type?

link|improve this question

75% accept rate
2  
I think TItem should read TA, no? – JeffN825 Oct 5 '11 at 16:56
1  
Awesome question, btw. – JeffN825 Oct 5 '11 at 16:59
Its unlikely to be a bug in the compiler. To be fair the error message does use the words "may unify" my guess is that its because you use both interfaces. – Ramhound Oct 5 '11 at 17:00
1  
@JoshEinstein: B is not a type parameter, it's an actual type. The only type parameter is TA. – Aaronaught Oct 5 '11 at 17:01
1  
@Ramhound I don't see why it is "unlikely" to be a compiler bug. I can see no other explanation, really. It seems like an easy mistake to make and situation that doesn't come up very often. – kmkemp Oct 5 '11 at 17:04
show 5 more comments
feedback

4 Answers

up vote 17 down vote accepted

This is a consequence of section 13.4.2 of the C# 4 specification, which states:

If any possible constructed type created from C would, after type arguments are substituted into L, cause two interfaces in L to be identical, then the declaration of C is invalid. Constraint declarations are not considered when determining all possible constructed types.

Note that second sentence there.

It is therefore not a bug in the compiler; the compiler is correct. One might argue that it is a flaw in the language specification.

Generally speaking, constraints are ignored in almost every situation in which a fact must be deduced about a generic type. Constraints are mostly used to determine the effective base class of a generic type parameter, and little else.

Unfortunately, that sometimes leads to situations where the language is unnecessarily strict, as you have discovered.


It is in general a bad code smell to implement "the same" interface twice, in some way distinguished only by generic type arguments. It is bizarre, for example, to have class C : IEnumerable<Turtle>, IEnumerable<Giraffe> -- what is C that it is both a sequence of turtles, and a sequence of giraffes, at the same time? Can you describe the actual thing you're trying to do here? There might be a better pattern to solve the real problem.


If in fact your interface is exactly as you describe:

interface IFoo<T>
{
    void Handle(T t);
}

Then multiple inheritance of the interface presents another problem. You might reasonably decide to make this interface contravariant:

interface IFoo<in T>
{
    void Handle(T t);
}

Now suppose you have

interface IABC {}
interface IDEF {}
interface IABCDEF : IABC, IDEF {}

And

class Danger : IFoo<IABC>, IFoo<IDEF>
{
    void IFoo<IABC>.Handle(IABC x) {}
    void IFoo<IDEF>.Handle(IDEF x) {}
}

And now things get really crazy...

IFoo<IABCDEF> crazy = new Danger();
crazy.Handle(null);

Which implementation of Handle gets called???

See this article and the comments for more thoughts on this issue:

http://blogs.msdn.com/b/ericlippert/archive/2007/11/09/covariance-and-contravariance-in-c-part-ten-dealing-with-ambiguity.aspx

link|improve this answer
void IFoo<IABC>.Handle(IABC x) and I'd guess we are seeing internal implementation details peeking out? – asawyer Oct 5 '11 at 17:43
2  
Definitely, it makes no sense when interfaces are the type parameters; I had incorrectly assumed that using concrete classes would work around the issue. As for the scenario, the class is a Saga, which must implement several message handlers (one for each message that's part of the saga). There are about 10 nearly-identical sagas whose only difference is the exact concrete type of one of the messages, but I can't have an abstract message handler, so I thought I'd attempt to use a generic base class and just use a bunch of stub classes; the only alternative is a lot of copy-and-pasting. – Aaronaught Oct 5 '11 at 18:50
5  
@Eric: The situation of implementing the same generic interface with more than once is more likely if you consider an interface like IComparable<T> or IEquatable<T> rather than IEnumerable<T>. It's quite plausible to have an object that can be compared to more than one kind of type ... in fact, I've run into the type unification issues several times for this exact case. – LBushkin Oct 5 '11 at 20:17
1  
@LBushkin: Good point. – Eric Lippert Oct 5 '11 at 20:46
1  
@Eric, LBushkin is correct. That some uses are non-sensical, does not imply all uses are non-sensical. This problem just bit me too, because I was implementing an abstract parsing interface IFoo<T0, T1, ..> which implements a piecewise IParseable<T0>, IParseable<T1>, ... with a set of extension methods defined on IParseable, but now that seems impossible. C#/CLR has many frustrating corner cases like this. – naasking Nov 12 '11 at 21:39
show 4 more comments
feedback

Apparently it was by design as discussed at Microsoft Connect:

And the workaround is, define another interface as:

public interface IIFoo<T> : IFoo<T>
{
}

Then implement this instead as:

public class MyFoo<TA> : IIFoo<TA>, IFoo<B>
    where TA : A
{
    public void Handle(TA a) { }
    public void Handle(B b) { }
}

It now compiles fine, by mono.

link|improve this answer
Upvoted for the Connect link; unfortunately, the workaround doesn't compile with the Microsoft compiler. – Aaronaught Oct 5 '11 at 19:00
@Aaronaught: Try making IIFoo an abstract class then. – Nawaz Oct 5 '11 at 19:02
That does compile, although it obviously prevents me from deriving from a different base class. I think I might actually be able to make this work, although it will mandate another intermediate (hackish/useless) level in the class hierarchy. – Aaronaught Oct 5 '11 at 19:12
This actually violates the spec if I'm not mistaken. The section that Eric quoted specifies that it shouldn't be possible, doesn't it? – configurator Oct 5 '11 at 20:15
@configurator: That's probably why it's illegal in the Microsoft compiler. Deriving from an abstract class which implements one of the interfaces skirts the issue because the wording in the spec only applies to type L - that is MyFoo and not its potential answer, MyFooBase : IFoo<B>. Still ugly... – Aaronaught Oct 5 '11 at 21:21
show 3 more comments
feedback

Taking a guess now...

Couldn't A, B and C be declared in outside assemblies, where the type hierarchy may change after the compilation of MyFoo<T>, bringing havoc into the world?

The easy workaround is just to implement Handle(A) instead of Handle(TA) (and use IFoo<A> instead of IFoo<TA>). You cant do much more with Handle(TA) than access methods from A (due to the A : TA constraint) anyway.

public class MyFoo : IFoo<A>, IFoo<B> {
    public void Handle(A a) { }
    public void Handle(B b) { }
}
link|improve this answer
No to this >> Couldn't A, B and C be declared in outside assemblies, where the type hierarchy may change after the compilation of MyFoo<T>, bringing havoc into the world?. – Nawaz Oct 5 '11 at 17:04
Changing the type hierarchy would invalidate just about any program; it doesn't make a whole lot of sense to me that the compiler would base its decisions on anything other than what the type hierarchy is right now (although, I guess it makes no less sense to me than the error itself at the moment...) As for the workaround, well, that will compile but it's no longer generic, so it doesn't really help much. – Aaronaught Oct 5 '11 at 17:08
feedback

Hmm, what about this:

public class MyFoo<TA> : IFoo<TA>, IFoo<B>
    where TA : A
{
    void IFoo<TA>.Handle(TA a) { }
    void IFoo<B>.Handle(B b) { }
}
link|improve this answer
No, the error is on the class itself; it doesn't depend on the way the interface is implemented. – Qwertie Feb 3 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.