summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/initialization.c
blob: a6fe9be2b701af5bde71f7cd97e3ebf5a278ff53 (plain)
1
2
3
4
5
6
7
// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s
// expected-no-diagnostics

void initbug() {
  const union { float a; } u = {};
  (void)u.a; // no-crash
}
OpenPOWER on IntegriCloud