Skip to content

Commit 864272c

Browse files
committed
update baselines
1 parent 578d8ef commit 864272c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tests/baselines/reference/unknownControlFlow.errors.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tests/cases/conformance/types/unknown/unknownControlFlow.ts(293,5): error TS2345
66

77

88
==== tests/cases/conformance/types/unknown/unknownControlFlow.ts (5 errors) ====
9-
type T01 = {} & string; // string
9+
type T01 = {} & string; // {} & string
1010
type T02 = {} & 'a'; // 'a'
1111
type T03 = {} & object; // object
1212
type T04 = {} & { x: number }; // { x: number }

tests/baselines/reference/unknownControlFlow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//// [unknownControlFlow.ts]
2-
type T01 = {} & string; // string
2+
type T01 = {} & string; // {} & string
33
type T02 = {} & 'a'; // 'a'
44
type T03 = {} & object; // object
55
type T04 = {} & { x: number }; // { x: number }

tests/baselines/reference/unknownControlFlow.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/types/unknown/unknownControlFlow.ts ===
2-
type T01 = {} & string; // string
2+
type T01 = {} & string; // {} & string
33
>T01 : Symbol(T01, Decl(unknownControlFlow.ts, 0, 0))
44

55
type T02 = {} & 'a'; // 'a'

tests/baselines/reference/unknownControlFlow.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=== tests/cases/conformance/types/unknown/unknownControlFlow.ts ===
2-
type T01 = {} & string; // string
3-
>T01 : string
2+
type T01 = {} & string; // {} & string
3+
>T01 : {} & string
44

55
type T02 = {} & 'a'; // 'a'
66
>T02 : "a"

tests/cases/conformance/types/unknown/unknownControlFlow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @strict: true
22
// @declaration: true
33

4-
type T01 = {} & string; // string
4+
type T01 = {} & string; // {} & string
55
type T02 = {} & 'a'; // 'a'
66
type T03 = {} & object; // object
77
type T04 = {} & { x: number }; // { x: number }

0 commit comments

Comments
 (0)