mirror of
https://github.com/circify/circ.git
synced 2026-01-09 21:58:19 -05:00
11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
// Here we miss the constraint so we can give different values than 5 to b and c
|
|
def main(private field a, private field b, private field c) -> field{
|
|
field d = a * b;
|
|
field e = 7;
|
|
asm {
|
|
e <-- a * c;
|
|
}
|
|
assert(d == e);
|
|
return 1;
|
|
}
|