1
1
mirror of https://github.com/github/semantic.git synced 2025-01-02 20:41:38 +03:00
semantic/test/fixtures/java/corpus/binary.java

20 lines
143 B
Java
Raw Normal View History

2018-06-06 20:02:44 +03:00
a > b;
a < b;
a == b;
a >= b;
a <= b;
a != b;
a && b;
a || b;
a & b;
a | b;
a ^ b;
a % b;
a << b;
a >> b;
a >>> b;
3 + 2;
3 - 2;
3 * 2;
9 / 3;