// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual esModuleInteropFindAllReferences2" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestEsModuleInteropFindAllReferences2(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @esModuleInterop: true // @Filename: /a.d.ts export as namespace abc; /*1*/export const /*2*/x: number; // @Filename: /b.ts import a from "./a"; a./*3*/x;` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyBaselineFindAllReferences(t, "1", "2", "3") }