package fourslash_test import ( "testing" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil" ) func TestSymbolNameAtUnparseableFunctionOverload(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `class TestClass { public function foo(x: string): void; public function foo(): void; foo(x: any): void { this.bar(/**/x); // should not error } } ` f := fourslash.NewFourslash(t, nil /*capabilities*/, content) f.GoToMarker(t, "") f.VerifyQuickInfoExists(t) }