mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
154 B
JavaScript
13 lines
154 B
JavaScript
import * as dummy from 'dummy';
|
|
|
|
class C {
|
|
constructor() {
|
|
this.field = new Object();
|
|
}
|
|
}
|
|
|
|
function test() {
|
|
let x = new C().field;
|
|
foo(x);
|
|
}
|