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

34 lines
1.3 KiB
Plaintext

tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts(11,9): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts(24,9): error TS2346: Supplied parameters do not match any signature of call target.
==== tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts (2 errors) ====
class Base {
a = 1;
constructor(x: number) { this.a = x; }
}
class Derived extends Base {
x = 1
y = 'hello';
}
var r = new Derived(); // error
~~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
var r2 = new Derived(1);
class Base2<T> {
a: T;
constructor(x: T) { this.a = x; }
}
class D<T extends Date> extends Base2<T> {
x = 2
y: T = null;
}
var d = new D(); // error
~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
var d2 = new D(new Date()); // ok