aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/copy-elision.mm
blob: fa9435f599fe7869f8af500f3b670e29b7794513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_analyze_cc1 -analyzer-checker=core -fblocks -verify %s

// expected-no-diagnostics

namespace block_rvo_crash {
struct A {};

A getA();
void use(A a) {}

void foo() {
  // This used to crash when finding construction context for getA()
  // (which is use()'s argument due to RVO).
  use(^{
    return getA();  // no-crash
  }());
}
} // namespace block_rvo_crash