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