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