mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
20 lines
267 B
Plaintext
20 lines
267 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
circuit Foo {
|
|
x: u32,
|
|
|
|
function echo(self) -> u32 {
|
|
return self.x;
|
|
}
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
const a = Foo { x: 1u32 };
|
|
|
|
return a.echo() == 1u32 == true;
|
|
}
|