TypeScript/tests/baselines/reference/varArgConstructorMemberParameter.errors.txt
2014-07-12 17:30:19 -07:00

15 lines
368 B
Plaintext

==== tests/cases/compiler/varArgConstructorMemberParameter.ts (1 errors) ====
class Foo1 {
constructor (...args: string[]) { }
}
class Foo2 {
constructor (public args: string[]) { }
}
class Foo3 {
constructor (public ...args: string[]) { }
~~~
!!! ',' expected.
}