30 lines
833 B
Go
30 lines
833 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual referencesForMergedDeclarations7"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestReferencesForMergedDeclarations7(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface Foo { }
|
|
namespace Foo {
|
|
export interface /*1*/Bar { }
|
|
export module /*2*/Bar { export interface Baz { } }
|
|
export function /*3*/Bar() { }
|
|
}
|
|
|
|
// module, value and type
|
|
import a2 = Foo./*4*/Bar;`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineFindAllReferences(t, "1", "2", "3", "4")
|
|
}
|