TypeScript/tests/baselines/reference/constructorOverloadsWithDefaultValues.errors.txt
2014-09-12 13:35:07 -07:00

22 lines
1.1 KiB
Plaintext

tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts(3,17): error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts(10,17): error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
==== tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts (2 errors) ====
class C {
foo: string;
constructor(x = 1); // error
~~~~~
!!! error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
constructor() {
}
}
class D<T> {
foo: string;
constructor(x = 1); // error
~~~~~
!!! error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
constructor() {
}
}