mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-11 03:19:00 +03:00
14 lines
218 B
Plaintext
14 lines
218 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
function main(k: bool) -> bool {
|
|
let x: u8 = 1u8;
|
|
let x: bool = true;
|
|
|
|
return k == true;
|
|
}}
|