summaryrefslogtreecommitdiff
path: root/test/SemaCXX/thread-safety-reference-handling.cpp
blob: 2f7eb48d3436611ffca1bf2a8ca789c31d3a2f3b (plain)
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();
}