TypeScript/tests/baselines/reference/mergeTwoInterfaces.js
2014-08-19 12:06:52 -07:00

80 lines
1.3 KiB
TypeScript

//// [mergeTwoInterfaces.ts]
// two interfaces with the same root module should merge
// basic case
interface A {
foo: string;
}
interface A {
bar: number;
}
var a: A;
var r1 = a.foo
var r2 = a.bar;
// basic generic case
interface B<T> {
baz: string;
foo: T;
}
interface B<T> {
bar: T;
}
var b: B<string>;
var r3 = b.foo
var r4 = b.bar;
// basic non-generic and generic case inside a module
module M {
interface A {
foo: string;
}
interface A {
bar: number;
}
var a: A;
var r1 = a.foo;
// BUG 856491
var r2 = a.bar; // any, should be number
interface B<T> {
foo: T;
}
interface B<T> {
bar: T;
}
var b: B<string>;
var r3 = b.foo
// BUG 856491
var r4 = b.bar; // any, should be string
}
//// [mergeTwoInterfaces.js]
// two interfaces with the same root module should merge
var a;
var r1 = a.foo;
var r2 = a.bar;
var b;
var r3 = b.foo;
var r4 = b.bar;
// basic non-generic and generic case inside a module
var M;
(function (M) {
var a;
var r1 = a.foo;
// BUG 856491
var r2 = a.bar; // any, should be number
var b;
var r3 = b.foo;
// BUG 856491
var r4 = b.bar; // any, should be string
})(M || (M = {}));