kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/findAllRefsObjectBindingElementPropertyName05_test.go
2025-10-15 10:12:44 +03:00

25 lines
578 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestFindAllRefsObjectBindingElementPropertyName05(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface I {
property1: number;
property2: string;
}
function f({ /**/property1: p }, { property1 }) {
let x = property1;
}`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineFindAllReferences(t, "")
}