23 lines
564 B
Go
23 lines
564 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestDuplicateFunctionImplementation(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface IFoo<T> {
|
|
foo<T>(): T;
|
|
}
|
|
function foo<string>(/**/): string { return null; }
|
|
function foo<T>(x: T): T { return null; }`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.GoToMarker(t, "")
|
|
f.Insert(t, "x: string")
|
|
}
|