Fix fourslash test

This commit is contained in:
Anders Hejlsberg 2019-08-27 07:23:52 -04:00
parent bf0debb883
commit b18c70f8c0

View file

@ -10,8 +10,8 @@ verify.codeFix({
`type MyType = [string, number];
interface I { x: MyType; test(a: MyType): void; }
class C implements I {
x: [string, number];
test(a: [string, number]): void {
x: MyType;
test(a: MyType): void {
throw new Error("Method not implemented.");
}
}`,