From 97e964a08f242eb806962d9d53e1d92f7d764fc8 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Wed, 25 Jan 2017 14:15:06 -0800 Subject: [PATCH] Fix typo --- tests/cases/fourslash/findAllRefsForMappedType.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/fourslash/findAllRefsForMappedType.ts b/tests/cases/fourslash/findAllRefsForMappedType.ts index 620eae0815c..38fb3a226c6 100644 --- a/tests/cases/fourslash/findAllRefsForMappedType.ts +++ b/tests/cases/fourslash/findAllRefsForMappedType.ts @@ -1,7 +1,7 @@ /// ////interface T { [|a|]: number }; -////type U { [K in keyof T]: string }; +////type U = { [K in keyof T]: string }; ////type V = { [K in keyof U]: boolean }; ////const u: U = { [|a|]: "" } ////const v: V = { [|a|]: true }