-
Bug
-
Resolution: Fixed
-
P4
-
8, 9
-
b56
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8085365 | emb-9 | Srikanth Adayapalam | P4 | Resolved | Fixed | team |
At Attr.visitBinary when it says:
Type right = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.rhs, env));
it should be:
Type right = chk.checkNonVoid(tree.rhs.pos(), attribExpr(tree.rhs, env));
Type right = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.rhs, env));
it should be:
Type right = chk.checkNonVoid(tree.rhs.pos(), attribExpr(tree.rhs, env));
- backported by
-
JDK-8085365 Attr.visitBinary flags error at wrong position
-
- Resolved
-