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