Merge pull request #9997 from Microsoft/re-add-strict-concat-signature

Re-add strict concat signature
This commit is contained in:
Nathan Shively-Sanders
2016-08-02 11:06:18 -07:00
committed by GitHub
19 changed files with 88 additions and 40 deletions

View File

@@ -0,0 +1,2 @@
let ijs: [number, number][] = [[1, 2]];
ijs = ijs.concat([[3, 4], [5, 6]]);