vendor tsgo
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual genericAssignmentCompat"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestGenericAssignmentCompat(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `interface Int<T> {
|
||||
|
||||
val<U>(f: (t: T) => U): Int<U>;
|
||||
|
||||
}
|
||||
|
||||
declare var v1: Int<string>;
|
||||
|
||||
var /*1*/v2/*2*/: Int<number> = v1;`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyErrorExistsBetweenMarkers(t, "1", "2")
|
||||
f.VerifyNumberOfErrorsInCurrentFile(t, 1)
|
||||
}
|
||||
Reference in New Issue
Block a user