leo/tests/compiler/array/multi_fail_initializer.leo

3 lines
88 B
Plaintext
Raw Normal View History

2020-09-02 21:40:58 +03:00
function main() {
const arr: [u8; (2, 2)] = [[1u8; 2]; 1]; // incorrect dimensions
2020-09-02 21:40:58 +03:00
}