TypeScript/tests/baselines/reference/parser509668.errors.txt

10 lines
384 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509668.ts(3,23): error TS1005: ',' expected.
2015-04-09 02:49:14 +02:00
==== tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509668.ts (1 errors) ====
2014-07-13 01:04:16 +02:00
class Foo3 {
// Doesn't work, but should
constructor (public ...args: string[]) { }
~~~
!!! error TS1005: ',' expected.
2014-07-13 01:04:16 +02:00
}