mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 04:35:33 +03:00
15 lines
197 B
Plaintext
15 lines
197 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/true.in
|
|
*/
|
|
|
|
|
|
@program
|
|
function main(a: bool) -> bool {
|
|
console.assert_eq(a == 1u8);
|
|
console.assert(1u8);
|
|
|
|
return a == true;
|
|
}
|