thread-safety-reference-handling.cpp 263 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 // 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(); }