[explicit-resource-management] Fix typo in using-for-using-of-of

This commit is contained in:
Olivier Flückiger 2025-11-10 15:54:32 +01:00 committed by Philip Chimento
parent 80d1f6dc89
commit 29860b3e42

View File

@ -18,5 +18,5 @@ for (using of of [0, 1, 2]) {
result.push(using);
}
asserts.sameValue(result.length, 1);
asserts.sameValue(result[0], 7);
assert.sameValue(result.length, 1);
assert.sameValue(result[0], 7);