// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual getSemanticDiagnosticForDeclaration" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestGetSemanticDiagnosticForDeclaration(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @strict: false // @module: CommonJS // @declaration: true export function /*1*/foo/*2*/() { interface privateInterface {} class Bar implements privateInterface { private a; } return Bar; }` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyErrorExistsBetweenMarkers(t, "1", "2") f.VerifyNumberOfErrorsInCurrentFile(t, 1) }