mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
11 lines
141 B
JavaScript
11 lines
141 B
JavaScript
(function(){
|
|
var a = null;
|
|
a.p;
|
|
a?.p;
|
|
|
|
var b = undefined;
|
|
b.p;
|
|
b?.p;
|
|
});
|
|
// semmle-extractor-options: --experimental
|