leo/tests/compiler/integers/i16/max_fail.leo
2022-08-09 19:53:17 -07:00

11 lines
160 B
Plaintext

/*
namespace: Compile
expectation: Fail
input_file: ../inputs/dummy.in
*/
@program
function main(y: bool) -> i16 {
const a: i16 = 32768i16;
return a;
}