summaryrefslogtreecommitdiff
path: root/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/basic.cpp
blob: 885d11b9c24a6737ba3e78e86418570b5c36d886 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fsyntax-only -verify %s

// PR5787
class C {
 public:
  ~C() {}
};

template <typename T>
class E {
 public:
  E& Foo(const C&);
  E& Bar() { return Foo(C()); }
};

void Test() {
  E<int> e;
  e.Bar();
}