1// RUN: %check_clang_tidy %s bugprone-inc-dec-in-conditions %t
2
3_BitInt(8) v_401_0() {
4 0 && ({
5 _BitInt(5) y = 0;
6 16777215wb ?: ++y;
7 });
8}
9// CHECK-MESSAGES: warning
10

source code of clang-tools-extra/test/clang-tidy/checkers/bugprone/inc-dec-in-conditions-bitint-no-crash.c