DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / functionTypeArgumentArrayAssignment.ts
12345678910
module test { interface Array<T> { foo: T; length: number; } function map<U>() { var ys: U[] = []; } }