TypeScript/tests/cases/compiler/restParamModifier.ts
Jason Freeman 35db9f68f4 Add tests
2015-07-02 16:13:47 -07:00

3 lines
58 B
TypeScript

class C {
constructor(...public rest: string[]) {}
}