blob: 24244cb5eff0dd6de8d26f54bc17a95484b6caec (
plain)
1
2
3
4
5
6
|
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-output=text -verify %s
// Do not crash on initialization to complex numbers.
void init_complex() {
_Complex float valid1 = { 0.0f, 0.0f };
}
|