X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=tests%2Foperators.qc;h=1ca6f67caa0e5cf56ecf2516b82f487af3ba750d;hb=c6e7e80f234e5cafe08976fb4f145b0c755b83a6;hp=e1464e381c6b2740529c814f89ceb292791e9433;hpb=122e80cc4d3db31174ed91bfca217ed7b9a4f0c3;p=xonotic%2Fgmqcc.git diff --git a/tests/operators.qc b/tests/operators.qc index e1464e3..1ca6f67 100644 --- a/tests/operators.qc +++ b/tests/operators.qc @@ -56,4 +56,7 @@ void main() { a = 1; print(ftos(a |= 2), " = 3\n"); print(ftos(a &= 6), " = 2\n"); + a = 7; + + print(ftos(a &~= 3), " = 4\n"); }