TypeScript/tests/cases/fourslash/refactorConvertParamsToDestructuredObject_arrowFunctionWithType.ts
2019-03-14 13:41:29 -07:00

8 lines
253 B
TypeScript

/// <reference path='fourslash.ts' />
////const foo: (a: number, b: number) => number = /*a*/(a: number, b: number)/*b*/ => a + b;
////foo(1, 2);
goTo.select("a", "b");
verify.not.refactorAvailable("Convert parameters to destructured object");