summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/clang-analyzer-core.uninitialized.Branch.cpp
blob: 7a985eb08064a7ac3961c747decb589a49b12c1c (plain)
1
2
3
4
5
6
void test() {
  int x;
  if (x) {
    return;
  }
}