mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
// Normally it is an error to have multiple overloads with identical signatures in a single type declaration.
|
|
// Here the multiple overloads come from multiple bases.
|
|
|
|
interface Base<T> {
|
|
(x: number): string;
|
|
}
|
|
|
|
interface I extends Base<string>, Base<number> { }
|
|
|
|
interface I2<T> extends Base<string>, Base<number> { } |