Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small change in
instanceofs
integration to account for the slightly…
… different boxing semantics under javac. In conditionals that need boxing, e.g. ``` int m, n; ... Object o = b ? m : n; ``` the javac frontend expresses the conditional as returning `Object` expressing that the boxing occurs as if written: ``` int m, n; ... Object o = b ? (Object) m : (Object) n; ``` PiperOrigin-RevId: 702100822
- Loading branch information