mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
17 lines
225 B
Plaintext
17 lines
225 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
circuit Bar {
|
|
b2: u32
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
const Bar: u32 = 66u32;
|
|
const k1: Bar = Bar { b2: 30u32 };
|
|
|
|
return y == true;
|
|
}
|