leo/tests/compiler/integers/u16/no_space_between_literal.leo

11 lines
123 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Fail
*/
2022-10-06 02:53:49 +03:00
program test.aleo {
function main() {
const i = 1 u16;
}
2021-05-10 21:11:31 +03:00
}