There are three Java 1.6 interfaces inheriting one from another:
interface First<T extends First<T>> {
T me();
}
interface Second<T extends Second<T>> extends First<T> {
}
interface Third<T extends Third<T>> extends Second<T> {
void foo();
}
Now I'm expecting this one to work, but no:
// somewhere later
public void bar(Third t) {
t.me().foo();
}
Compiler says that t.me() is of type Second. What am I doing wrong?
t.me()is of typeThird? – yegor256 Apr 17 '11 at 12:36