Tph3 kein Principal Type #93
Labels
No Label
Codegen
confirmed
duplicate
Eclipse-Plugin
Feature Request
generics
in progress
invalid
JavaCompilerCore
needs info
Parser
Trash
Type
Unify
won't fix
works for me
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: JavaTX/JavaCompilerCore#93
Loading…
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?
Zu Dokumentationszwecken auch noch ins Bugzilla gepackt
Sie erhalten zu Tph3. jav
public class Tph3 {
m1(x, y) {
m2(x); x = y;
}
}
als Ergebnis:
public class Tph3 {
public Tph3();
public void m1(DZC, DZC);
public void m2(V);
}
Ich sehe bei der Methode m1 nicht warum die beiden Argumente den gleichen Typ haben.
Ich denke es müsste rauskommen:
public class Tph3 {
public Tph3();
public <Y extends DZC, DZC> void m1(DZC, Y);
public void m2(V);
}
branch: targetBytecode
commit:
239698c8d6
Das Problem scheint gelöst zu sein.