mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 16:38:05 -06:00
Add compiler test
This commit is contained in:
parent
60572bad94
commit
18cf2e490f
5
tests/cases/compiler/bindingPatternInParameter01.ts
Normal file
5
tests/cases/compiler/bindingPatternInParameter01.ts
Normal file
@ -0,0 +1,5 @@
|
||||
const nestedArray = [[[1, 2]], [[3, 4]]];
|
||||
|
||||
nestedArray.forEach(([[a, b]]) => {
|
||||
console.log(a, b);
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user