mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
14 lines
170 B
Plaintext
14 lines
170 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/dummy.in
|
|
*/
|
|
|
|
type int = u32;
|
|
|
|
function main(y: bool) -> bool {
|
|
let int: int = 1u32;
|
|
|
|
return y;
|
|
} |