30 lines
726 B
Go
30 lines
726 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual jsdocDeprecated_suggestion7"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestJsdocDeprecated_suggestion7(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `enum Direction {
|
|
Left = -1,
|
|
Right = 1,
|
|
}
|
|
type T = Direction.Left
|
|
/** @deprecated */
|
|
const x = 1
|
|
type x = string
|
|
var y: x = 'hi'`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifySuggestionDiagnostics(t, nil)
|
|
}
|