Steps to reproduce
Paste the following function into any XJSnark program:
public uint_256 max(uint_256 a, uint_256 b) {
if (a > b) {
return a;
} else {
return b;
}
}
The bug occurs regardless of whether this function is ever invoked.
It results in the following compilation problem:

Steps to reproduce
Paste the following function into any XJSnark program:
The bug occurs regardless of whether this function is ever invoked.
It results in the following compilation problem: