mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-27 12:13:41 +03:00
18 lines
290 B
Plaintext
18 lines
290 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
function main(y: bool) -> bool {
|
|
console.log("{}", 1u8);
|
|
return y;
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
console.log("{}", 2u8);
|
|
return y;
|
|
}
|
|
}
|