8000 Fix main baselines. Again. (#57964) · andrewbranch/TypeScript@bc7e538 · GitHub
[go: up one dir, main page]

Skip to content

Commit bc7e538

Browse files
authored
Fix main baselines. Again. (microsoft#57964)
1 parent 47f48d3 commit bc7e538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/nestedGenericSpreadInference.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
=== nestedGenericSpreadInference.ts ===
44
declare function wrap<X>(x: X): { x: X };
5-
>wrap : <X>(x: X) => { x: X;}
5+
>wrap : <X>(x: X) => { x: X; }
66
>x : X
77
>x : X
88

99
declare function call<A extends unknown[], T>(x: { x: (...args: A) => T }, ...args: A): T;
10-
>call : <A extends unknown[], T>(x: { x: (...args: A) => T;}, ...args: A) => T
10+
>call : <A extends unknown[], T>(x: { x: (...args: A) => T; }, ...args: A) => T
1111
>x : { x: (...args: A) => T; }
1212
>x : (...args: A) => T
1313
>args : A

0 commit comments

Comments
 (0)
0