leo/tests/compiler/aliases/alias_circuit_namespace_conflict_fail.leo

17 lines
166 B
Plaintext

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