Files
2018-08-02 17:53:23 +01:00

14 lines
143 B
TypeScript

function registerSomething(x) {
x.foo();
}
namespace a.b.q {
var c = {
foo
};
registerSomething(c);
function foo() {} // OK
}