aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/unresolved-construct.cpp
blob: 0d1ba17a0179281c6178a68bc0de96ce3709d176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
class A
{
public:
    A() {}

    template <class _F>
        explicit A(_F&& __f);

    A(A&&) {}
    A& operator=(A&&) {return *this;}
};

template <class T>
void f(T t)
{
  A a;
  a = f(t);
}