TypeScript/tests/cases/fourslash/restParamsContextuallyTyped.ts
2014-10-07 11:30:27 -07:00

11 lines
305 B
TypeScript

/// <reference path='fourslash.ts' />
////var foo: Function = function (/*1*/a, /*2*/b, /*3*/c) { };
goTo.marker('1');
verify.quickInfoIs('(parameter) a: any', "");
goTo.marker('2');
verify.quickInfoIs('(parameter) b: any', "");
goTo.marker('3');
verify.quickInfoIs('(parameter) c: any', "");