leo/tests/parser/expression/binary/bit_xor.leo.off
2021-04-12 13:15:40 -07:00

16 lines
122 B
Plaintext

/*
namespace: ParseExpression
expectation: Pass
*/
1 ^ 1
2^3
1 ^ 2 ^ 3
1 & 2 ^ 3 & 4
1 ^ 2 ^ 3
1 & 2 ^ 3 & 4 ^ 5 & 6