From c9c282b2d78c26838864079bc42cf0768e42a8bd Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Tue, 27 Feb 2018 15:15:08 -0800 Subject: [PATCH] Update test --- tests/cases/conformance/types/conditional/inferTypes1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/conformance/types/conditional/inferTypes1.ts b/tests/cases/conformance/types/conditional/inferTypes1.ts index 13b142e0122..15f86c751d7 100644 --- a/tests/cases/conformance/types/conditional/inferTypes1.ts +++ b/tests/cases/conformance/types/conditional/inferTypes1.ts @@ -13,7 +13,7 @@ type T02 = Unpacked<() => string>; // string type T03 = Unpacked>; // string type T04 = Unpacked[]>>; // string type T05 = Unpacked; // any -type T06 = Unpacked; // {} +type T06 = Unpacked; // never function f1(s: string) { return { a: 1, b: s };