1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/compile_errors/constant_reduction_fail.zok
2022-04-06 20:23:58 +02:00

7 lines
126 B
Text

from "EMBED" import bit_array_le;
const bool CONST = bit_array_le([true], [true]);
def main() -> bool {
return CONST;
}