mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
13 lines
176 B
Plaintext
13 lines
176 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
function main() {
|
|
const a = [1u8; 10];
|
|
for i in 0..10 {
|
|
const x = a[i..10];
|
|
console.debug("{}", x);
|
|
}
|
|
}
|