mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
27 lines
540 B
TypeScript
27 lines
540 B
TypeScript
// Derived type indexer must be subtype of base type indexer
|
|
|
|
interface Base { foo: string; }
|
|
interface Derived extends Base { bar: string; }
|
|
interface Derived2 extends Derived { baz: string; }
|
|
|
|
class A {
|
|
[x: string]: Derived;
|
|
}
|
|
|
|
class B extends A {
|
|
[x: string]: string; // error
|
|
}
|
|
|
|
module Generics {
|
|
class A<T extends Derived> {
|
|
[x: string]: T;
|
|
}
|
|
|
|
class B extends A<Base> {
|
|
[x: string]: string; // error
|
|
}
|
|
|
|
class B3<T extends Derived> extends A<T> {
|
|
[x: string]: string; // error
|
|
}
|
|
} |