aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/copypaste/not-autogenerated.cpp
blob: 765e7aaf2aab6970e93e218e855712afba738ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=alpha.clone.CloneChecker -analyzer-config alpha.clone.CloneChecker:IgnoredFilesPattern="moc_|ui_|dbus_|.*_automoc" -verify %s

void f1() {
  int *p1 = new int[1];
  int *p2 = new int[1];
  if (p1) {
    delete [] p1; // expected-note{{Similar code using 'p1' here}}
    p1 = nullptr;
  }
  if (p2) {
    delete [] p1; // expected-warning{{Potential copy-paste error; did you really mean to use 'p1' here?}}
    p2 = nullptr;
  }
}