Skip to content

Commit a8c4e6f

Browse files
committed
Accept new baselines
1 parent 55da2b9 commit a8c4e6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/baselines/reference/intersectionsAndEmptyObjects.types

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ let x04: A & B & C;
2626
>x04 : A & B
2727

2828
let x05: string & C;
29-
>x05 : string & {}
29+
>x05 : string & C
3030

3131
let x06: C & string;
32-
>x06 : string & {}
32+
>x06 : C & string
3333

3434
let x07: C;
3535
>x07 : C
3636

3737
let x08: C & {};
38-
>x08 : {}
38+
>x08 : C
3939

4040
let x09: {} & A & {} & B & {} & C & {};
4141
>x09 : A & B

0 commit comments

Comments
 (0)