leo/tests/compiler/structs/inline_member_pass.leo
2022-10-05 16:53:49 -07:00

27 lines
370 B
Plaintext

/*
namespace: Compile
expectation: Fail
inputs:
- inline.in: |
[main]
y: bool = true;
[constants]
x: u8 = 10;
[registers]
r0: bool = false;
*/
program test.aleo {
struct Foo {
x: u8
}
function main(const x: u8, y: bool) -> bool {
const a: Foo = Foo { x };
return (b.x == a.x) == y;
}
}