summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/clang-analyzer-core.uninitialized.Assign.cpp
blob: e9685d48a41f47e0391584d5062a3906176b3474 (plain)
1
2
3
4
void test() {
  int x;
  x |= 1;
}