2021-08-04 23:34:11 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Pass
|
|
|
|
input_file: input/dummy.in
|
|
|
|
cwd: local_imports
|
|
|
|
*/
|
2021-05-05 19:31:25 +03:00
|
|
|
|
2021-08-04 23:34:11 +03:00
|
|
|
import circuits.*;
|
2020-05-21 01:51:57 +03:00
|
|
|
|
2021-05-13 16:56:17 +03:00
|
|
|
function main(y: bool) -> bool {
|
2021-03-18 22:19:07 +03:00
|
|
|
const a = Point { x: 1u32, y: 0u32 };
|
2021-08-25 17:30:17 +03:00
|
|
|
const hello_alias: char5 = "hello";
|
|
|
|
const hello = "hello";
|
2021-09-06 13:53:02 +03:00
|
|
|
const eight = 8u8;
|
2021-09-06 16:12:58 +03:00
|
|
|
const fab = fab_gen();
|
2020-07-30 23:01:04 +03:00
|
|
|
|
2021-09-06 13:53:02 +03:00
|
|
|
return( (foo() == 1u32) && hello_alias == hello && EIGHT == eight) == y;
|
2021-05-05 19:31:25 +03:00
|
|
|
}
|