leo/tests/compiler/circuits/member_variable_fail.leo

14 lines
145 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Fail
*/
2020-07-17 06:47:47 +03:00
circuit Foo {
x: u32;
}
2020-07-30 21:11:54 +03:00
function main() {
const a = Foo { x: 1u32 };
const err = a.y;
2021-05-05 11:37:51 +03:00
}