mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
import cpp
|
|
|
|
from BuiltInComplexOperation bico, Expr real, Expr imag
|
|
where
|
|
real = bico.getRealOperand() and
|
|
imag = bico.getImaginaryOperand()
|
|
select bico, bico.getType(), real, real.getType(), imag, imag.getType()
|