blob: 24244cb5eff0dd6de8d26f54bc17a95484b6caec [file] [log] [blame]
Anna Zaks352c6572012-09-05 22:31:58 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-output=text -verify %s
2
3// Do not crash on initialization to complex numbers.
4void init_complex() {
5 _Complex float valid1 = { 0.0f, 0.0f };
6}