Files
babel/test/fixtures/generation/edgecase/bitwise-precedence/expected.js
Sebastian McKenzie dce41bb989 fix up tests
2014-11-09 12:09:59 +11:00

4 lines
37 B
JavaScript

x | y ^ z;
x | (y ^ z);
(x | y) ^ z;