mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
20 lines
201 B
TypeScript
20 lines
201 B
TypeScript
namespace N1 {
|
|
var x;
|
|
let y;
|
|
}
|
|
|
|
namespace N2 {
|
|
var x;
|
|
let y;
|
|
}
|
|
|
|
namespace N2 {
|
|
var w;
|
|
}
|
|
|
|
function f(x: number): number;
|
|
function f(x: string): string;
|
|
function f(x: any): any {
|
|
return x;
|
|
}
|