Fixed ' IDEA-128685: Incorrectly typed assignment expression'

This commit is contained in:
Stiver
2014-08-16 15:31:53 +02:00
parent c672e5bc83
commit 929056d727
3 changed files with 27 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ public class AssignmentExprent extends Exprent {
public VarType getExprType() {
return right.getExprType();
return left.getExprType();
}