leo/tests/compiler/circuits/duplicate_circuit_variable.leo

14 lines
130 B
Plaintext
Raw Normal View History

2022-06-23 11:38:33 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Bar {
x: u32,
x: u32,
}
function main() -> bool {
return true;
}