mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
17 lines
253 B
TypeScript
17 lines
253 B
TypeScript
// some complex cases of assignment compat of generic signatures. No contextual signature instantiation
|
|
|
|
interface A {
|
|
<T>(x: T, ...y: T[][]): void
|
|
}
|
|
|
|
interface B {
|
|
<S>(x: S, ...y: S[]): void
|
|
}
|
|
|
|
var a: A;
|
|
var b: B;
|
|
|
|
// Both errors
|
|
a = b;
|
|
b = a;
|