TypeScript/tests/baselines/reference/constructorOverloads6.errors.txt
2014-12-16 19:11:07 -08:00

30 lines
812 B
Plaintext

tests/cases/compiler/constructorOverloads6.ts(4,25): error TS1184: An implementation cannot be declared in ambient contexts.
==== tests/cases/compiler/constructorOverloads6.ts (1 errors) ====
declare class FooBase {
constructor(s: string);
constructor(n: number);
constructor(x: any) {
~
!!! error TS1184: An implementation cannot be declared in ambient contexts.
}
bar1():void;
}
declare class Foo extends FooBase {
constructor(s: string);
constructor(n: number);
constructor(x: any, y?:any);
bar1():void;
}
var f1 = new Foo("hey");
var f2 = new Foo(0);
var f3 = new Foo(f1);
var f4 = new Foo([f1,f2,f3]);
f1.bar1();