-
Bug
-
Resolution: Unresolved
-
P3
-
8
This code:
class Test {
void m() {
//compiles in javac 7, but not in javac 8
CharSequence bar = foo(true ? String.class : StringBuilder.class);
}
static <T> T foo(Class<T> clazz) {
return null;
}
}
is accepted by javac 7 but javac 8 generates this error message:
Test.java:4: error: method foo in class Test cannot be applied to given types;
CharSequence bar = foo(true ? String.class : StringBuilder.class);
^
required: Class<T>
found: true ? Str[...]class
reason: inferred type does not conform to equality constraint(s)
inferred: StringBuilder
equality constraints(s): StringBuilder,String
where T is a type-variable:
T extends Object declared in method <T>foo(Class<T>)
1 error
Spec changes for reference conditional expressions in 8 are the cause of this issue that provokes a compatibility issue and thus should be investigated.
http://stackoverflow.com/questions/22509488/generics-compilation-error-with-ternary-operator-in-java-8-but-not-in-java-7
class Test {
void m() {
//compiles in javac 7, but not in javac 8
CharSequence bar = foo(true ? String.class : StringBuilder.class);
}
static <T> T foo(Class<T> clazz) {
return null;
}
}
is accepted by javac 7 but javac 8 generates this error message:
Test.java:4: error: method foo in class Test cannot be applied to given types;
CharSequence bar = foo(true ? String.class : StringBuilder.class);
^
required: Class<T>
found: true ? Str[...]class
reason: inferred type does not conform to equality constraint(s)
inferred: StringBuilder
equality constraints(s): StringBuilder,String
where T is a type-variable:
T extends Object declared in method <T>foo(Class<T>)
1 error
Spec changes for reference conditional expressions in 8 are the cause of this issue that provokes a compatibility issue and thus should be investigated.
http://stackoverflow.com/questions/22509488/generics-compilation-error-with-ternary-operator-in-java-8-but-not-in-java-7
- blocks
-
JDK-8037932 Type inference not always working on ternary expressions
-
- Closed
-
- duplicates
-
JDK-8044052 spec changes for reference conditional expressions
-
- Closed
-
- relates to
-
JDK-8037932 Type inference not always working on ternary expressions
-
- Closed
-
-
JDK-8264009 Program doesn't compile under Java 8, does compile under Java 6
-
- Closed
-