TypeScript/tests/cases/fourslash/quickInfoForObjectBindingElementPropertyName03.ts

13 lines
318 B
TypeScript
Raw Normal View History

2015-07-16 00:07:04 +02:00
/// <reference path='fourslash.ts'/>
////interface Recursive {
//// next?: Recursive;
//// value: any;
////}
////
////function f ({ /*1*/next: { /*2*/next: x} }: Recursive) {
////}
2016-09-09 18:02:55 +02:00
for (const marker of test.markerNames()) {
verify.quickInfoAt(marker, "(property) Recursive.next?: Recursive");
2015-07-16 00:07:04 +02:00
}