Zweite Zeile in der Family Def. 41 enthält noch Fehler #70
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Branch: origin/bytecodeGenericsSecond
Commit:
ef723e4103
class TestTwoArgs {
a;
}
liefert
public class TestGGFinder<N$ extends S$, S$> {
N$ a;
public TestGGFinder();
public <Q$ extends AC$, P$ extends Q$, AC$ extends Y$, Y$> AC$ id(P$);
public <T$ extends N$> S$ setA(T$);
public <Z$ extends P$, Y$, P$> void m(Y$, Z$);
}
Es müsste aber
public <Z$ extends P$, Y$, P$ extends Y$> void m(Y$, Z$);
liefern. Vermutlich wird in firstTransitiveSubtypeForMethodTypes
der Fall, dass Z < P und P < Y nicht berücksichtigt, weil Y < Object in der ersten Zeil nicht eingefuegt wird. Y aber eine Typevariable eines Nodes ist.