teak-llvm/clang/test/SemaCXX/thread-safety-reference-handling.cpp
Richard Trieu a1877598aa Take the non-reference type when constructing a dummy expression.
Otherwise, Expr will assert during construction with a reference type.

llvm-svn: 232425
2015-03-16 21:49:43 +00:00

18 lines
263 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify -Wthread-safety-analysis -std=c++11 %s
// expected-no-diagnostics
class Base {
public:
Base() {}
virtual ~Base();
};
class S : public Base {
public:
~S() override = default;
};
void Test() {
const S &s = S();
}