Fehler in BoundedGenericsTest #167

Closed
opened 2015-03-11 16:49:47 +00:00 by stan · 1 comment
Owner

Folgendes Constraint Set wird nicht unifiziert:

(TPH B <. TPH B),
(java.lang.String <. TPH B),
(TPH B <. TPH ABG),
(TPH ABG <. BoGTV B),
(void <. void)

Fehler tritt auf in plugindevelopment.TypeInsertTests.BoundedGenericsTest

Folgendes Constraint Set wird nicht unifiziert: (TPH B <. TPH B), (java.lang.String <. TPH B), (TPH B <. TPH ABG), (TPH ABG <. BoGTV B), (void <. void) Fehler tritt auf in plugindevelopment.TypeInsertTests.BoundedGenericsTest
Owner

class BoundedGenericTest{
String var = "test";
B methode(){
return var;
}
}

ist kein korrektes Java,

java.lang.String <. BoGTV B (extends String)
ist falsch

class BoundedGenericTest<A extends String>{ String var = "test"; <B extends A> B methode(){ return var; } } ist kein korrektes Java, java.lang.String <. BoGTV B (extends String) ist falsch
Sign in to join this conversation.
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: JavaTX/JavaCompilerCore#167
No description provided.