DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / declarationEmitInferedTypeAlias8.ts
12345678
// @declaration: true type Foo<T> = T | { x: Foo<T> }; var x: Foo<number[]>; function returnSomeGlobalValue() { return x; }