2021-05-03 17:28:53 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Fail
|
|
|
|
*/
|
|
|
|
|
2020-05-19 22:41:21 +03:00
|
|
|
// Arrays are immutable by default.
|
|
|
|
function main() {
|
2021-03-18 22:19:07 +03:00
|
|
|
const a = [1u32];
|
2020-07-17 22:59:18 +03:00
|
|
|
a[0] = 0;
|
2020-05-19 22:41:21 +03:00
|
|
|
}
|