aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/copypaste/expr-types.cpp
blob: 601f0b192ac5575ebfe01efb7a56e284f2289dfd (plain) (blame)
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 -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;
}