mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
276 B
Plaintext
15 lines
276 B
Plaintext
/**
|
|
* @name Compile-time constant
|
|
* @description Finds compile-time constants with value zero.
|
|
* @id go/examples/zeroconstant
|
|
* @tags expression
|
|
* numeric value
|
|
* constant
|
|
*/
|
|
|
|
import go
|
|
|
|
from DataFlow::Node zero
|
|
where zero.getNumericValue() = 0
|
|
select zero
|