Skip to content

Commit 86185ad

Browse files
committed
Accept new baselines
1 parent ddc106b commit 86185ad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/baselines/reference/invariantGenericErrorElaboration.errors.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
tests/cases/compiler/invariantGenericErrorElaboration.ts(3,7): error TS2322: Type 'Num' is not assignable to type 'Runtype<any>'.
2-
The types of 'constraint.constraint.constraint' are incompatible between these types.
3-
Type 'Constraint<Constraint<Constraint<Num>>>' is not assignable to type 'Constraint<Constraint<Constraint<Runtype<any>>>>'.
4-
Type 'Constraint<Runtype<any>>' is not assignable to type 'Constraint<Num>'.
2+
The types of 'constraint.constraint' are incompatible between these types.
3+
Type 'Constraint<Constraint<Num>>' is not assignable to type 'Constraint<Constraint<Runtype<any>>>'.
4+
Type 'Runtype<any>' is not assignable to type 'Num'.
55
tests/cases/compiler/invariantGenericErrorElaboration.ts(4,19): error TS2322: Type 'Num' is not assignable to type 'Runtype<any>'.
66

77

@@ -11,9 +11,9 @@ tests/cases/compiler/invariantGenericErrorElaboration.ts(4,19): error TS2322: Ty
1111
const wat: Runtype<any> = Num;
1212
~~~
1313
!!! error TS2322: Type 'Num' is not assignable to type 'Runtype<any>'.
14-
!!! error TS2322: The types of 'constraint.constraint.constraint' are incompatible between these types.
15-
!!! error TS2322: Type 'Constraint<Constraint<Constraint<Num>>>' is not assignable to type 'Constraint<Constraint<Constraint<Runtype<any>>>>'.
16-
!!! error TS2322: Type 'Constraint<Runtype<any>>' is not assignable to type 'Constraint<Num>'.
14+
!!! error TS2322: The types of 'constraint.constraint' are incompatible between these types.
15+
!!! error TS2322: Type 'Constraint<Constraint<Num>>' is not assignable to type 'Constraint<Constraint<Runtype<any>>>'.
16+
!!! error TS2322: Type 'Runtype<any>' is not assignable to type 'Num'.
1717
const Foo = Obj({ foo: Num })
1818
~~~
1919
!!! error TS2322: Type 'Num' is not assignable to type 'Runtype<any>'.

0 commit comments

Comments
 (0)