leo/tests/compiler/circuits/circuit_global_const_namespace_conflict_fail copy.leo

16 lines
169 B
Plaintext

/*
namespace: Compile
expectation: Fail
input_file:
- inputs/dummy.in
*/
circuit Foo {
x: u8;
}
const Foo = 8u8;
function main(y: bool) -> bool {
return y;
}