leo/tests/compiler/circuits/duplicate_name_context.leo
2021-05-05 11:37:51 +03:00

19 lines
259 B
Plaintext

/*
namespace: Compile
expectation: Pass
*/
circuit Bar {
b2: u32
function add_five(z: u32) -> u32 {
return z + 5u32;
}
}
function main () {
const Bar = 66u32;
const k1 = Bar { b2: 30u32 };
const k2 = Bar::add_five(55u32);
}