mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
180 B
C
10 lines
180 B
C
void ComplexNumbers() {
|
|
double r = 0.0;
|
|
_Imaginary double i = 1.0;
|
|
_Complex double c = 0.0;
|
|
r = c;
|
|
c = i;
|
|
c = r;
|
|
}
|
|
// semmle-extractor-options: --microsoft --edg --c99
|