From ca96d2e2465b23129ae8f76645090ddd8ca3f4ac Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 7 Apr 2022 14:14:11 -0700 Subject: [PATCH] Fix semantic merge conflict --- tests/baselines/reference/controlFlowForIndexSignatures.types | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/baselines/reference/controlFlowForIndexSignatures.types b/tests/baselines/reference/controlFlowForIndexSignatures.types index eb6757f0d3f..94db82e959c 100644 --- a/tests/baselines/reference/controlFlowForIndexSignatures.types +++ b/tests/baselines/reference/controlFlowForIndexSignatures.types @@ -1,6 +1,6 @@ === tests/cases/compiler/controlFlowForIndexSignatures.ts === type Foo = { bar: string }; ->Foo : Foo +>Foo : { bar: string; } >bar : string const boo: Foo = { bar: 'bar' };