leo/asg/tests/pass/circuits/member_variable.leo

9 lines
111 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
circuit Foo {
x: u32,
}
function main() {
let a = Foo { x: 1u32 };
console.assert(a.x == 1u32);
}