mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
143 B
TypeScript
14 lines
143 B
TypeScript
function registerSomething(x) {
|
|
x.foo();
|
|
}
|
|
|
|
namespace a.b.q {
|
|
var c = {
|
|
foo
|
|
};
|
|
|
|
registerSomething(c);
|
|
|
|
function foo() {} // OK
|
|
}
|