1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-08 11:08:41 +03:00
leo/tests/compiler/statements/assign_ternary.leo

9 lines
125 B
Plaintext
Raw Normal View History

2021-07-24 03:12:30 +03:00
/*
namespace: Compile
expectation: Fail
input_file: inputs/u32_3.in
*/
function main(x: u32) {
let x = true ? x: true;
}