leo/tests/compiler/circuits/circuit_alias_namespace_conflict_fail.leo

16 lines
165 B
Plaintext

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