mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 03:33:44 +03:00
25 lines
309 B
Plaintext
25 lines
309 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
inputs:
|
||
|
- inline.in: |
|
||
|
[main]
|
||
|
y: bool = true;
|
||
|
|
||
|
[constants]
|
||
|
x: u8 = 10;
|
||
|
|
||
|
[registers]
|
||
|
r0: bool = false;
|
||
|
*/
|
||
|
|
||
|
circuit Foo {
|
||
|
x: u8
|
||
|
}
|
||
|
|
||
|
function main(const x: u8, y: bool) -> bool {
|
||
|
const a: Foo = Foo { x };
|
||
|
|
||
|
return (b.x == a.x) == y;
|
||
|
}
|