TypeScript/tests/cases/fourslash/quickInfoForObjectBindingElementPropertyName03.ts
Daniel Rosenwasser 873835b9e5 Add tests.
2015-07-15 15:07:04 -07:00

14 lines
No EOL
338 B
TypeScript

/// <reference path='fourslash.ts'/>
////interface Recursive {
//// next?: Recursive;
//// value: any;
////}
////
////function f ({ /*1*/next: { /*2*/next: x} }: Recursive) {
////}
for (let { position } of test.markers()) {
goTo.position(position)
verify.quickInfoIs("(property) Recursive.next: Recursive");
}