aboutsummaryrefslogtreecommitdiff
path: root/clang/test/AST/fixed-point-zero-init.cpp
blob: abe8aa8c396a858f5f1df4d01d7ef41aecc9ae41 (plain)
1
2
3
4
5
// RUN: %clang_cc1 -ffixed-point %s -verify
// expected-no-diagnostics

constexpr _Accum a[2] = {};
static_assert(a[0] == 0 && a[0] != 1);