mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
53 lines
1.0 KiB
TypeScript
53 lines
1.0 KiB
TypeScript
// index signatures must be compatible in assignments
|
|
|
|
interface Base { foo: string; }
|
|
interface Derived extends Base { bar: string; }
|
|
interface Derived2 extends Derived { baz: string; }
|
|
|
|
class A {
|
|
[x: string]: Base;
|
|
}
|
|
|
|
var a: A;
|
|
|
|
var b: { [x: string]: Derived; }
|
|
a = b; // ok
|
|
b = a; // error
|
|
|
|
var b2: { [x: string]: Derived2; }
|
|
a = b2; // ok
|
|
b2 = a; // error
|
|
|
|
module Generics {
|
|
class A<T extends Base> {
|
|
[x: string]: T;
|
|
}
|
|
|
|
class B extends A<Base> {
|
|
[x: string]: Derived; // ok
|
|
}
|
|
|
|
var b1: { [x: string]: Derived; };
|
|
var a1: A<Base>;
|
|
a1 = b1; // ok
|
|
b1 = a1; // error
|
|
|
|
class B2 extends A<Base> {
|
|
[x: string]: Derived2; // ok
|
|
}
|
|
|
|
var b2: { [x: string]: Derived2; };
|
|
a1 = b2; // ok
|
|
b2 = a1; // error
|
|
|
|
function foo<T extends Base>() {
|
|
var b3: { [x: string]: Derived; };
|
|
var a3: A<T>;
|
|
a3 = b3; // error
|
|
b3 = a3; // error
|
|
|
|
var b4: { [x: string]: Derived2; };
|
|
a3 = b4; // error
|
|
b4 = a3; // error
|
|
}
|
|
} |