mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
19 lines
382 B
Plaintext
19 lines
382 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
cwd: local_imports
|
|
*/
|
|
|
|
import circuits.*;
|
|
|
|
function main(y: bool) -> bool {
|
|
const a = Point { x: 1u32, y: 0u32 };
|
|
const hello_alias: char5 = "hello";
|
|
const hello = "hello";
|
|
const eight = 8u8;
|
|
const fab = fab_gen();
|
|
|
|
return( (foo() == 1u32) && hello_alias == hello && EIGHT == eight) == y;
|
|
}
|