JS: Benign test updates

This commit is contained in:
Asger F
2024-09-10 13:07:24 +02:00
parent 3d4287b7cc
commit e0ca1b0482
3 changed files with 4 additions and 2 deletions

View File

@@ -55,7 +55,7 @@
sink(ary); // OK - its the array itself, not an element.
});
sink(arr[0]); // OK - tuple like usage.
sink(arr[0]); // NOT OK
for (const x of arr) {
sink(x); // NOT OK