mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
18 lines
247 B
TypeScript
18 lines
247 B
TypeScript
class C {
|
|
static instance: C = new C();
|
|
}
|
|
|
|
export class D {
|
|
static instance: D = new D();
|
|
}
|
|
|
|
export class E {
|
|
static f: C | boolean = false;
|
|
static {
|
|
E.f = new C();
|
|
}
|
|
static g: D | number = 1337;
|
|
static {
|
|
E.g = new D();
|
|
}
|
|
} |