27 lines
557 B
Go
27 lines
557 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestAddInterfaceToNotSatisfyConstraint(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface A {
|
|
a: number;
|
|
}
|
|
/**/
|
|
interface C<T extends A> {
|
|
x: T;
|
|
}
|
|
|
|
var v2: C<B>; // should not work`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.GoToMarker(t, "")
|
|
f.Insert(t, "interface B { b: string; }")
|
|
}
|