mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
321 B
C
11 lines
321 B
C
|
|
void builtin_double(double real, double imag) {
|
|
_Complex double a = __builtin_complex(real, imag);
|
|
_Complex double b = __builtin_complex(2.71828, 3.14159);
|
|
}
|
|
|
|
void builtin_float(float realf, float imagf) {
|
|
_Complex float c = __builtin_complex(realf, imagf);
|
|
_Complex float d = __builtin_complex(1.23f, 4.56f);
|
|
}
|