mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
177 B
C
10 lines
177 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 -std=c99
|