llvm-project/clang/test/SemaCXX/thread-safety-reference-han...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
263 B
C++
Raw Normal View History

// 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();
}