summaryrefslogtreecommitdiffstats
path: root/test/Analysis/copypaste/expr-types.cpp
blob: 6062be306e2dd27c995f1cfecbb04ab149127d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=alpha.clone.CloneChecker -analyzer-config alpha.clone.CloneChecker:MinimumCloneComplexity=10 -verify %s

// expected-no-diagnostics


int foo1(int a, int b) {
  if (a > b)
    return a;
  return b;
}

// Different types, so not a clone
int foo2(long a, long b) {
  if (a > b)
    return a;
  return b;
}