mirror of
https://github.com/github/codeql.git
synced 2026-02-12 21:21:16 +01:00
5 lines
103 B
JavaScript
5 lines
103 B
JavaScript
var n = 1<<40; // NOT OK
|
|
var n2 = BigInt(1) << 40n; // OK
|
|
|
|
// semmle-extractor-options: --experimental
|