leo/asg/tests/pass/circuits/define_circuit_inside_circuit_function.leo
2021-01-25 07:19:38 -08:00

13 lines
149 B
Plaintext

circuit Foo {
a: u32,
}
circuit Bar {
function bar() {
let f = Foo { a: 0u32 };
}
}
function main() {
let b = Bar::bar();
}