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

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