mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-12 12:57:11 -06:00
Fix fourslash test
This commit is contained in:
parent
bf0debb883
commit
b18c70f8c0
@ -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.");
|
||||
}
|
||||
}`,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user