mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -06:00
Add regression test
This commit is contained in:
parent
5e55118076
commit
4bb5cfb9bb
@ -0,0 +1,12 @@
|
||||
// @strict: true
|
||||
|
||||
// Repro from #27337
|
||||
|
||||
interface Array<T> {
|
||||
equalsShallow<T>(this: ReadonlyArray<T>, other: ReadonlyArray<T>): boolean;
|
||||
}
|
||||
|
||||
declare const a: (string | number)[] | null[] | undefined[] | {}[];
|
||||
declare const b: (string | number)[] | null[] | undefined[] | {}[];
|
||||
|
||||
let x = a.equalsShallow(b);
|
||||
Loading…
x
Reference in New Issue
Block a user