leo/tests/compiler/statements/non_existant_var_exp_fail.leo
2022-06-02 09:37:55 -07:00

10 lines
149 B
Plaintext

/*
namespace: Compile
expectation: Fail
input_file: inputs/dummy.in
*/
function main(k: bool) -> bool {
let b: u8 = 1u8**z;
return k == true;
}