leo/tests/compiler/circuits/circuit_function_namespace_conflict_fail.leo

15 lines
140 B
Plaintext
Raw Normal View History

2022-06-23 11:38:33 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
x: u8;
}
function Foo() {}
function main(y: bool) -> bool {
return y;
2022-08-30 21:02:01 +03:00
}