Files
codeql/javascript/ql/test/query-tests/Declarations/DeadStoreOfLocal/namespace.ts
2025-02-28 13:27:28 +01:00

14 lines
137 B
TypeScript

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