DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / internalAliasVar.ts
123456789
// @declaration: true module a { export var x = 10; } module c { import b = a.x; export var bVal = b; }