From 6b32c4bd33183210163e8606a2eb6dc41f53a435 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Thu, 8 Jan 2026 01:50:25 +0000 Subject: [PATCH] How do I keep missing these? --- .../assignmentCompatWithStringIndexer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts b/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts index b6f4927563f..fa0f66b5028 100644 --- a/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts +++ b/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts @@ -41,8 +41,8 @@ namespace Generics { b2 = a1; // error function foo() { - declare var b3: { [x: string]: Derived; }; - declare var a3: A; + var b3: { [x: string]: Derived; }; + var a3: A; a3 = b3; // error b3 = a3; // error