1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
//// [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 = {}));
|