package fourslash_test import ( "testing" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil" ) func TestFindAllRefsMissingModulesOverlappingSpecifiers(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// https://github.com/microsoft/TypeScript/issues/5551 import { resolve/*0*/ as resolveUrl } from "idontcare"; import { resolve/*1*/ } from "whatever";` f := fourslash.NewFourslash(t, nil /*capabilities*/, content) f.VerifyBaselineFindAllReferences(t, "0", "1") }