31 lines
833 B
Go
31 lines
833 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual callHierarchyFunctionAmbiguity1"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestCallHierarchyFunctionAmbiguity1(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @filename: a.d.ts
|
|
declare function foo(x?: number): void;
|
|
// @filename: b.d.ts
|
|
declare function foo(x?: string): void;
|
|
declare function foo(x?: boolean): void;
|
|
// @filename: main.ts
|
|
function bar() {
|
|
/**/foo();
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "")
|
|
f.VerifyBaselineCallHierarchy(t)
|
|
}
|