brintos

brintos / llvm-project-archived public Read only

0
0
Text · 231 B · 299f362 Raw
8 lines · cpp
1// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-output=text -verify %s2// expected-no-diagnostics3 4// Do not crash on initialization to complex numbers.5void init_complex() {6  _Complex float valid1 = { 0.0f, 0.0f };7}8