TypeScript/tests/cases/fourslash/completionListAfterAnyType.ts
2014-07-29 12:17:44 -07:00

14 lines
281 B
TypeScript

/// <reference path="fourslash.ts"/>
//// declare class myString {
//// charAt(pos: number): string;
//// }
////
//// function bar(a: myString) {
//// var x: any = a./**/
//// }
goTo.marker();
verify.memberListContains("charAt");
verify.memberListCount(1);